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