summaryrefslogtreecommitdiff
path: root/rtl/core/arm810.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-11-07 12:57:48 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-07 13:31:15 -0600
commitaaf02562e4d49fc93df1f619e3fbd6c85c0e7951 (patch)
treed7ae1d53f18950d370def5932553947c3af4f785 /rtl/core/arm810.sv
parentf78de55eef2e805e459064005daa08c7697d2273 (diff)
Implement multiplication control
Diffstat (limited to 'rtl/core/arm810.sv')
-rw-r--r--rtl/core/arm810.sv4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtl/core/arm810.sv b/rtl/core/arm810.sv
index 2cc35a8..3f237aa 100644
--- a/rtl/core/arm810.sv
+++ b/rtl/core/arm810.sv
@@ -134,7 +134,7 @@ module arm810
.c(c_shifter)
);
- logic mul, mul_add, mul_long, mul_signed, mul_ready;
+ logic mul_start, mul_add, mul_long, mul_signed, mul_ready;
word mul_a, mul_b, mul_c_hi, mul_c_lo, mul_q_hi, mul_q_lo;
psr_flags mul_flags;
@@ -147,7 +147,7 @@ module arm810
.long_mul(mul_long),
.add(mul_add),
.sig(mul_signed),
- .start(mul),
+ .start(mul_start),
.q_hi(mul_q_hi),
.q_lo(mul_q_lo),
.n(mul_flags.n),