diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-07 12:57:48 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-07 13:31:15 -0600 |
| commit | aaf02562e4d49fc93df1f619e3fbd6c85c0e7951 (patch) | |
| tree | d7ae1d53f18950d370def5932553947c3af4f785 /rtl/core/arm810.sv | |
| parent | f78de55eef2e805e459064005daa08c7697d2273 (diff) | |
Implement multiplication control
Diffstat (limited to 'rtl/core/arm810.sv')
| -rw-r--r-- | rtl/core/arm810.sv | 4 |
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), |
