aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel V. Shatov (Meister) <meisterpaul1@yandex.ru>2020-01-21 00:02:25 +0300
committerPavel V. Shatov (Meister) <meisterpaul1@yandex.ru>2020-01-21 00:02:48 +0300
commit8f7829ce5e37728ddc51b4aaa735b9e04a5eca01 (patch)
tree6439f79c180764e82479534d85af8152358dd683
parent64928838b16fe4c7bb6855d57e5695876314e286 (diff)
Tiny cosmetic typo fix ("dst" -> "dsp")
-rw-r--r--rtl/modexpng_general_worker.v10
1 files changed, 5 insertions, 5 deletions
diff --git a/rtl/modexpng_general_worker.v b/rtl/modexpng_general_worker.v
index 6618b5f..b85f189 100644
--- a/rtl/modexpng_general_worker.v
+++ b/rtl/modexpng_general_worker.v
@@ -30,7 +30,7 @@
//
//======================================================================
-module modexpng_general_worker_new
+module modexpng_general_worker
(
clk, rst_n,
ena, rdy,
@@ -1067,7 +1067,7 @@ module modexpng_general_worker_new
//
// DSP Slices
//
- `MODEXPNG_DSP_SLICE_ADDSUB dst_inst_x_x
+ `MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_x_x
(
.clk (clk),
.ce_abc (dsp_ce_x),
@@ -1084,7 +1084,7 @@ module modexpng_general_worker_new
.carry_out (dsp_carry_out_x)
);
- `MODEXPNG_DSP_SLICE_ADDSUB dst_inst_y_x
+ `MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_y_x
(
.clk (clk),
.ce_abc (dsp_ce_x),
@@ -1101,7 +1101,7 @@ module modexpng_general_worker_new
.carry_out ()
);
- `MODEXPNG_DSP_SLICE_ADDSUB dst_inst_x_y
+ `MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_x_y
(
.clk (clk),
.ce_abc (dsp_ce_y),
@@ -1118,7 +1118,7 @@ module modexpng_general_worker_new
.carry_out (dsp_carry_out_y)
);
- `MODEXPNG_DSP_SLICE_ADDSUB dst_inst_y_y
+ `MODEXPNG_DSP_SLICE_ADDSUB dsp_inst_y_y
(
.clk (clk),
.ce_abc (dsp_ce_y),