summaryrefslogtreecommitdiff
path: root/hdl/top.sv
diff options
context:
space:
mode:
authorJulian Blake Kongslie2021-04-15 16:39:58 -0700
committerJulian Blake Kongslie2021-04-15 16:39:58 -0700
commitabd9703a1b96225db0d7317bf8833467150bae26 (patch)
tree1cafad36a4e4773b32fa38e6ca16fa0ca37dcbd1 /hdl/top.sv
parentFix timing declarations for PLL in Quartus assignments. (diff)
downloadnoncpu-abd9703a1b96225db0d7317bf8833467150bae26.tar.xz
Change synthesis of PLL wrapper to avoid latch logic.pre-dp-8
Diffstat (limited to '')
-rw-r--r--hdl/top.sv4
1 files changed, 2 insertions, 2 deletions
diff --git a/hdl/top.sv b/hdl/top.sv
index 46620cb..0aebd77 100644
--- a/hdl/top.sv
+++ b/hdl/top.sv
@@ -12,8 +12,8 @@ bit clk;
12bit reset; 12bit reset;
13 13
14clock 14clock
15 #( .DIVIDE_BY(10) 15 #( .MULTIPLY_BY(9)
16 , .MULTIPLY_BY(9) 16 , .DIVIDE_BY(10)
17 ) pll 17 ) pll
18 ( .native_clk(native_clk) 18 ( .native_clk(native_clk)
19 , .reset_n(reset_n) 19 , .reset_n(reset_n)