diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-15 16:37:27 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-15 16:37:27 -0600 |
| commit | 5e8bafd124266be27532fc947e246eef35e45789 (patch) | |
| tree | bcbde51faa5d7347ff7778df6f1be64082cd9f67 /rtl/core | |
| parent | 54fa97814d58f282e2897f8d8a253bcebd52c8ba (diff) | |
Add untested warning to mul.sv
Diffstat (limited to 'rtl/core')
| -rw-r--r-- | rtl/core/mul.sv | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rtl/core/mul.sv b/rtl/core/mul.sv index e189e45..a05aff7 100644 --- a/rtl/core/mul.sv +++ b/rtl/core/mul.sv @@ -30,7 +30,8 @@ module core_mul assign n = long_mul ? q_hi[$bits(q_hi) - 1] : q_lo[$bits(q_lo) - 1]; assign z = q_lo == 0 && (!long_mul || q_hi == 0); - dsp_mul ip + //TODO: no está probado cuantos ciclos ocupa esto una vez sintetizado + dsp_mul it ( .clock0(clk), .aclr0(rst_n), |
