summaryrefslogtreecommitdiff
path: root/rtl/core
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-11-15 16:37:27 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-15 16:37:27 -0600
commit5e8bafd124266be27532fc947e246eef35e45789 (patch)
treebcbde51faa5d7347ff7778df6f1be64082cd9f67 /rtl/core
parent54fa97814d58f282e2897f8d8a253bcebd52c8ba (diff)
Add untested warning to mul.sv
Diffstat (limited to 'rtl/core')
-rw-r--r--rtl/core/mul.sv3
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),