diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2015-06-22 13:36:32 +0200 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2015-06-22 13:36:32 +0200 |
commit | c74066a2a56d6fdac5d675ce4c49e8697a02f7e1 (patch) | |
tree | ec744d66e19bf030dce915dad079c04d6ec119e3 /src/rtl | |
parent | 99f265001791aa8c58995fe1d8cfa1959f97de15 (diff) |
Killed off debug in RTL since we now whow info from TB.
Diffstat (limited to 'src/rtl')
-rw-r--r-- | src/rtl/montprod.v | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/rtl/montprod.v b/src/rtl/montprod.v index 45b2792..b03bf94 100644 --- a/src/rtl/montprod.v +++ b/src/rtl/montprod.v @@ -63,8 +63,6 @@ module montprod( //---------------------------------------------------------------- // Internal constant and parameter definitions. //---------------------------------------------------------------- - localparam DEBUG = 0; - localparam CTRL_IDLE = 4'h0; localparam CTRL_INIT_S = 4'h1; localparam CTRL_WAIT = 4'h2; @@ -377,7 +375,6 @@ module montprod( else sa_adder_data_in = muxed_s_mem_read_data; - if (b_reg) s_mem_new = add_result_sa; else if (q_reg) @@ -571,8 +568,6 @@ module montprod( CTRL_EMIT_S: begin - if (DEBUG) - $display("EMIT_S word_index_reg: %d", word_index_reg); if (word_index_prev_reg == 8'h0) begin ready_new = 1'b1; |