[Cryptech-Commits] [user/shatov/modexpng] 12/21: Tiny cosmetic typo fix ("dst" -> "dsp")
git at cryptech.is
git at cryptech.is
Mon Jan 20 21:18:13 UTC 2020
This is an automated email from the git hooks/post-receive script.
meisterpaul1 at yandex.ru pushed a commit to branch master
in repository user/shatov/modexpng.
commit 8f7829ce5e37728ddc51b4aaa735b9e04a5eca01
Author: Pavel V. Shatov (Meister) <meisterpaul1 at yandex.ru>
AuthorDate: Tue Jan 21 00:02:25 2020 +0300
Tiny cosmetic typo fix ("dst" -> "dsp")
---
rtl/modexpng_general_worker.v | 10 +++++-----
1 file 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),
More information about the Commits
mailing list