aboutsummaryrefslogtreecommitdiff
path: root/rtl/modexpng_general_worker.v
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/modexpng_general_worker.v')
-rw-r--r--rtl/modexpng_general_worker.v32
1 files changed, 20 insertions, 12 deletions
diff --git a/rtl/modexpng_general_worker.v b/rtl/modexpng_general_worker.v
index b85f189..9a8824c 100644
--- a/rtl/modexpng_general_worker.v
+++ b/rtl/modexpng_general_worker.v
@@ -1070,11 +1070,13 @@ module modexpng_general_worker
`MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_x_x
(
.clk (clk),
- .ce_abc (dsp_ce_x),
+ .ce_ab1 (1'b0),
+ .ce_ab2 (dsp_ce_x),
+ .ce_c (dsp_ce_x),
.ce_p (dsp_ce_x_dly),
.ce_ctrl (dsp_ce_x),
- .x (dsp_x_x_x),
- .y (dsp_x_x_y),
+ .ab (dsp_x_x_x),
+ .c (dsp_x_x_y),
.p (dsp_x_x_p),
.op_mode (dsp_op_mode_x),
.alu_mode (dsp_alu_mode_x),
@@ -1087,11 +1089,13 @@ module modexpng_general_worker
`MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_y_x
(
.clk (clk),
- .ce_abc (dsp_ce_x),
+ .ce_ab1 (1'b0),
+ .ce_ab2 (dsp_ce_x),
+ .ce_c (dsp_ce_x),
.ce_p (dsp_ce_x_dly),
.ce_ctrl (dsp_ce_x),
- .x (dsp_y_x_x),
- .y (dsp_y_x_y),
+ .ab (dsp_y_x_x),
+ .c (dsp_y_x_y),
.p (dsp_y_x_p),
.op_mode (dsp_op_mode_x),
.alu_mode (dsp_alu_mode_x),
@@ -1104,11 +1108,13 @@ module modexpng_general_worker
`MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_x_y
(
.clk (clk),
- .ce_abc (dsp_ce_y),
+ .ce_ab1 (1'b0),
+ .ce_ab2 (dsp_ce_y),
+ .ce_c (dsp_ce_y),
.ce_p (dsp_ce_y_dly),
.ce_ctrl (dsp_ce_y),
- .x (dsp_x_y_x),
- .y (dsp_x_y_y),
+ .ab (dsp_x_y_x),
+ .c (dsp_x_y_y),
.p (dsp_x_y_p),
.op_mode (dsp_op_mode_y),
.alu_mode (dsp_alu_mode_y),
@@ -1121,11 +1127,13 @@ module modexpng_general_worker
`MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_y_y
(
.clk (clk),
- .ce_abc (dsp_ce_y),
+ .ce_ab1 (1'b0),
+ .ce_ab2 (dsp_ce_y),
+ .ce_c (dsp_ce_y),
.ce_p (dsp_ce_y_dly),
.ce_ctrl (dsp_ce_y),
- .x (dsp_y_y_x),
- .y (dsp_y_y_y),
+ .ab (dsp_y_y_x),
+ .c (dsp_y_y_y),
.p (dsp_y_y_p),
.op_mode (dsp_op_mode_y),
.alu_mode (dsp_alu_mode_y),