aboutsummaryrefslogtreecommitdiffstats
path: root/ice40/regressions/issue0065/wtf.v
diff options
context:
space:
mode:
Diffstat (limited to 'ice40/regressions/issue0065/wtf.v')
-rw-r--r--ice40/regressions/issue0065/wtf.v17
1 files changed, 17 insertions, 0 deletions
diff --git a/ice40/regressions/issue0065/wtf.v b/ice40/regressions/issue0065/wtf.v
new file mode 100644
index 0000000..ef61397
--- /dev/null
+++ b/ice40/regressions/issue0065/wtf.v
@@ -0,0 +1,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