summaryrefslogtreecommitdiff
path: root/rtl/core/arm810.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-10-31 15:25:38 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-01 23:04:24 -0600
commitb5a065227bd176b85765461ac2a791fb0cff1c72 (patch)
treeb67393abc0b43882647037dc2294df85ea38e93e /rtl/core/arm810.sv
parentf4a3bb7f9656f45b7c0d9b3ed8e8b09e9bd14d37 (diff)
Implement multiplication decode
Diffstat (limited to 'rtl/core/arm810.sv')
-rw-r--r--rtl/core/arm810.sv2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtl/core/arm810.sv b/rtl/core/arm810.sv
index 266832f..517c8de 100644
--- a/rtl/core/arm810.sv
+++ b/rtl/core/arm810.sv
@@ -34,6 +34,7 @@ module arm810
snd_decode dec_snd;
data_decode dec_data;
ldst_decode dec_ldst;
+ mul_decode dec_mul;
core_decode decode
(
@@ -42,6 +43,7 @@ module arm810
.snd_ctrl(dec_snd),
.data_ctrl(dec_data),
.ldst_ctrl(dec_ldst),
+ .mul_ctrl(dec_mul),
.*
);