Sign in
foss-fpga-tools
/
prjtrellis
/
6bac5f022dd45d5588640c7567714e2fb3c25f98
/
.
/
minitests
/
machxo2
/
osch
/
osch.v
blob: 6374c14eed8dc9a2d5f06ea694c3117f72f1fd53 [
file
] [
log
] [
blame
]
module
osch
(
input clk
,
output stdby
);
wire
out
;
OSCH
#(
.
NOM_FREQ
(
"2.08"
)
)
osch_clk
(
.
STDBY
(
stdby
),
.
OSC
(
out
)
);
assign clk
=
stdby
;
endmodule