summaryrefslogtreecommitdiff
path: root/rtl/core/arm810.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-11-01 21:00:50 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-01 23:04:24 -0600
commit735c804c8e8e4bdcbe27c2e8ff74d609d7f45846 (patch)
tree61088394df522dc232b3ba914a45cc26bec6825d /rtl/core/arm810.sv
parent41b263bb39478393a302b284643a590779902f6c (diff)
Implement coprocessor instruction decode
Diffstat (limited to '')
-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 6028e91..6e4b777 100644
--- a/rtl/core/arm810.sv
+++ b/rtl/core/arm810.sv
@@ -35,6 +35,7 @@ module arm810
data_decode dec_data;
ldst_decode dec_ldst;
mul_decode dec_mul;
+ coproc_decode dec_coproc;
core_decode decode
(
@@ -44,6 +45,7 @@ module arm810
.data_ctrl(dec_data),
.ldst_ctrl(dec_ldst),
.mul_ctrl(dec_mul),
+ .coproc_ctrl(dec_coproc),
.*
);