Sign in
foss-fpga-tools
/
third_party
/
icestorm
/
56978cde58b1d8b5d3becc692ca2b4d72094b2b8
/
.
/
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