summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--altera/clocks.sdc2
-rw-r--r--hdl/top.sv4
2 files changed, 3 insertions, 3 deletions
diff --git a/altera/clocks.sdc b/altera/clocks.sdc
index c08f897..fd99dad 100644
--- a/altera/clocks.sdc
+++ b/altera/clocks.sdc
@@ -1,3 +1,3 @@
1# This is the clock for timing analysis, not timing-driven synthesis. 1# This is the clock for timing analysis, not timing-driven synthesis.
2# See init.tcl for the other clock. 2# See init.tcl for the other clock.
3create_clock -period "50 MHz" clock 3create_clock -period "30 MHz" clock
diff --git a/hdl/top.sv b/hdl/top.sv
index f4a64f9..38ab638 100644
--- a/hdl/top.sv
+++ b/hdl/top.sv
@@ -19,8 +19,8 @@ module top
19 bit internal_clock; 19 bit internal_clock;
20 bit internal_reset; 20 bit internal_reset;
21 pll 21 pll
22 #( .MULTIPLY_BY(1) 22 #( .MULTIPLY_BY(3)
23 , .DIVIDE_BY(1) 23 , .DIVIDE_BY(5)
24 ) fastpll 24 ) fastpll
25 ( .native_clk(clock) 25 ( .native_clk(clock)
26 , .reset_n(resetn) 26 , .reset_n(resetn)