summaryrefslogtreecommitdiff
path: root/rtl/core/arm810.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-10-15 23:33:34 -0600
committerAlejandro Soto <alejandro@34project.org>2022-10-15 23:33:34 -0600
commitd7747d9e030f965bd358bca5badb849f656147a8 (patch)
treefa1ae553ea9d6b7f073d4386136ab676edcf50c5 /rtl/core/arm810.sv
parent5b0872c995ddd7f581730ff9c7e145b5228e211d (diff)
Fix flags and writeback hazards
Diffstat (limited to 'rtl/core/arm810.sv')
-rw-r--r--rtl/core/arm810.sv3
1 files changed, 2 insertions, 1 deletions
diff --git a/rtl/core/arm810.sv b/rtl/core/arm810.sv
index 975ce03..c43a832 100644
--- a/rtl/core/arm810.sv
+++ b/rtl/core/arm810.sv
@@ -29,7 +29,7 @@ module arm810
.*
);
- logic dec_execute, dec_undefined, dec_writeback, dec_branch, dec_update_flags;
+ logic dec_execute, dec_conditional, dec_undefined, dec_writeback, dec_branch, dec_update_flags;
ptr dec_branch_offset;
snd_decode dec_snd;
data_decode dec_data;
@@ -38,6 +38,7 @@ module arm810
core_decode decode
(
.execute(dec_execute),
+ .conditional(dec_conditional),
.undefined(dec_undefined),
.writeback(dec_writeback),
.branch(dec_branch),