aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/regressions/issue0065/wtf.v
blob: ef6139730e38bb07169b5b969830ecd2af17a3c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
`default_nettype none

module wtf(
    input clk_12,
    output fast
);

wire clk_216;

ice40_pll_12_216 pll(
    .clock_in(clk_12),
    .clock_out(clk_216)
);

assign fast = clk_216;

endmodule