icestorm/icefuzz/tests/intosc.v

15 lines
187 B
Verilog

module top (
input clkhfpu,
input clkhfen,
output clkhf
);
SB_HFOSC #(
.CLKHF_DIV("0b10")
) hfosc (
.CLKHFPU(clkhfpu),
.CLKHFEN(clkhfen),
.CLKHF(clkhf)
);
endmodule