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