diff options
author | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2017-07-19 15:00:10 +0300 |
---|---|---|
committer | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2017-07-19 15:00:10 +0300 |
commit | 344ed1b7ab2fba06158a28b3c691cf9d9ee8cb75 (patch) | |
tree | 22bf5aa39c0c28ea1f345368ae435f26298f53a3 /src/tb | |
parent | d88715489690e1d77558bb2d89adce92ecabdc84 (diff) |
Finished modular exponentiation module:
* works in simulator
* passes synthesis without major issues
Started adding pre-multiplication logic...
Diffstat (limited to 'src/tb')
-rw-r--r-- | src/tb/tb_exponentiator.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tb/tb_exponentiator.v b/src/tb/tb_exponentiator.v index 8ca9444..3b612c5 100644 --- a/src/tb/tb_exponentiator.v +++ b/src/tb/tb_exponentiator.v @@ -180,7 +180,7 @@ module tb_exponentiator; .r_bram_in (core_r_data_in),
.r_bram_wr (core_r_wren),
- .n_num_words (n_num_words),
+ .m_num_words (n_num_words),
.d_num_bits (d_num_bits)
);
|