aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2015-06-22 15:15:04 +0200
committerJoachim StroĢˆmbergson <joachim@secworks.se>2015-06-22 15:15:04 +0200
commitc54b20ea19ebbbd8fb646950c4608d89eb2b60e7 (patch)
treec63b2bb47d55e89abbdd0d5c59deefc19ba8adf6
parentc74066a2a56d6fdac5d675ce4c49e8697a02f7e1 (diff)
Consolidated address settings, removed stale s logic mux control, removed extra lsw set.
-rw-r--r--src/rtl/montprod.v14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/rtl/montprod.v b/src/rtl/montprod.v
index b03bf94..93ddacf 100644
--- a/src/rtl/montprod.v
+++ b/src/rtl/montprod.v
@@ -300,10 +300,10 @@ module montprod(
if (montprod_ctrl_reg == CTRL_LOOP_ITER)
- opa_addr_reg = length_m1;
-
- if (montprod_ctrl_reg == CTRL_LOOP_ITER)
- s_mem_addr = length_m1;
+ begin
+ opa_addr_reg = length_m1;
+ s_mem_addr = length_m1;
+ end
if (montprod_ctrl_reg == CTRL_EMIT_S)
tmp_result_we = 1'b1;
@@ -470,7 +470,7 @@ module montprod(
begin
ready_new = 1'b0;
ready_we = 1'b1;
- first_iteration_new = 1'b0;
+ first_iteration_new = 1'b1;
first_iteration_we = 1'b1;
reset_word_index_lsw = 1'b1;
montprod_ctrl_new = CTRL_INIT_S;
@@ -480,10 +480,9 @@ module montprod(
CTRL_INIT_S:
begin
- s_mux_new = SMUX_0; // write 0
-
if (word_index_reg == 8'h0)
begin
+ loop_ctr_set = 1'b1;
montprod_ctrl_new = CTRL_WAIT;
montprod_ctrl_we = 1'b1;
end
@@ -501,7 +500,6 @@ module montprod(
CTRL_LOOP_ITER:
begin
b_bit_index_we = 1'b1;
- reset_word_index_lsw = 1'b1;
montprod_ctrl_new = CTRL_LOOP_BQ;
montprod_ctrl_we = 1'b1;
end