diff options
author | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2020-01-21 00:02:25 +0300 |
---|---|---|
committer | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2020-01-21 00:02:48 +0300 |
commit | 8f7829ce5e37728ddc51b4aaa735b9e04a5eca01 (patch) | |
tree | 6439f79c180764e82479534d85af8152358dd683 | |
parent | 64928838b16fe4c7bb6855d57e5695876314e286 (diff) |
Tiny cosmetic typo fix ("dst" -> "dsp")
-rw-r--r-- | rtl/modexpng_general_worker.v | 10 |
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), |