Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
2a26cfac3e1fd88718ab9bb31fac7f149b5f70b8
/
.
/
icefuzz
/
tests
/
intosc.v
blob: 227cb5588267eb9628a6a061a211483234c91439 [
file
] [
log
] [
blame
]
module
top
(
input clkhfpu
,
input clkhfen
,
output clkhf
);
SB_HFOSC
#(
.
CLKHF_DIV
(
"0b10"
)
)
hfosc
(
.
CLKHFPU
(
clkhfpu
),
.
CLKHFEN
(
clkhfen
),
.
CLKHF
(
clkhf
)
);
endmodule