aboutsummaryrefslogtreecommitdiffstats
path: root/icefuzz/tests/intosc.v
blob: 227cb5588267eb9628a6a061a211483234c91439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module top (
    input clkhfpu,
    input clkhfen,
    output clkhf
);
SB_HFOSC #(

  .CLKHF_DIV("0b10")
) hfosc (
  .CLKHFPU(clkhfpu),
  .CLKHFEN(clkhfen),
  .CLKHF(clkhf)
); 
endmodule