From 8d002c47537fa5d1002df8353c134a9f5303cd7f Mon Sep 17 00:00:00 2001 From: "Pavel V. Shatov (Meister)" Date: Wed, 26 Sep 2018 14:32:58 +0300 Subject: Started porting modular reductor... --- rtl/modular_multiplier/ed25519_modular_reductor.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rtl/modular_multiplier') diff --git a/rtl/modular_multiplier/ed25519_modular_reductor.v b/rtl/modular_multiplier/ed25519_modular_reductor.v index 5b50cb3..75b5a84 100644 --- a/rtl/modular_multiplier/ed25519_modular_reductor.v +++ b/rtl/modular_multiplier/ed25519_modular_reductor.v @@ -83,7 +83,7 @@ endfunction output rdy; // ready output output [WORD_COUNTER_WIDTH :0] x_addr; // index of current X word - output [WORD_COUNTER_WIDTH-1:0] p_addr; // index of current P word + output [WORD_COUNTER_WIDTH-1:0] y_addr; // index of current P word output y_wren; // store current Y word now @@ -104,7 +104,7 @@ assign x_addr = index_x; // // FSM // - localparam integer FSM_SHREG_WIDTH = 2;//(2 * OPERAND_NUM_WORDS + 1) + (5 * 2) + 1; + localparam integer FSM_SHREG_WIDTH = 10;//(2 * OPERAND_NUM_WORDS + 1) + (5 * 2) + 1; localparam FSM_SHREG_INIT = {{(FSM_SHREG_WIDTH-1){1'b0}}, 1'b1}; -- cgit v1.2.3