diff options
author | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2019-10-21 15:10:44 +0300 |
---|---|---|
committer | Pavel V. Shatov (Meister) <meisterpaul1@yandex.ru> | 2019-10-21 15:10:44 +0300 |
commit | 69b5d9f65cf49adbc1c1850fa2c4757199008717 (patch) | |
tree | b5be56bf414078bdada930cea0d9f439f374d9e7 /bench | |
parent | 72902f5b40ac695786f5103d2a5a456c6c7ee83f (diff) |
Added support for non-CRT mode. Further refactoring.
Diffstat (limited to 'bench')
-rw-r--r-- | bench/tb_core_full_512.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/tb_core_full_512.v b/bench/tb_core_full_512.v index 75accff..e2604f0 100644 --- a/bench/tb_core_full_512.v +++ b/bench/tb_core_full_512.v @@ -335,7 +335,7 @@ module tb_core_full_512; // task core_set_input_2; begin - //for (_w=0; _w< TB_NUM_WORDS_N; _w=_w+1) bus_write(2'd2, BANK_IN_2_D, { _w[6:0]}, D [_w]); + for (_w=0; _w< TB_NUM_WORDS_N; _w=_w+1) bus_write(2'd2, BANK_IN_2_D, { _w[6:0]}, D [_w]); for (_w=0; _w< TB_NUM_WORDS_PQ; _w=_w+1) bus_write(2'd2, BANK_IN_2_P, {1'b0, _w[5:0]}, P [_w]); for (_w=0; _w< TB_NUM_WORDS_PQ; _w=_w+1) bus_write(2'd2, BANK_IN_2_P, {1'b1, _w[5:0]}, DP [_w]); for (_w=0; _w< TB_NUM_WORDS_PQ; _w=_w+1) bus_write(2'd2, BANK_IN_2_P_FACTOR, { _w[6:0]}, P_FACTOR[_w]); |