summaryrefslogtreecommitdiff
path: root/rtl/core/arm810.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-11-15 20:02:17 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-15 20:56:48 -0600
commit2b457b34b842e0e2fa6236b304860ad3ba474b16 (patch)
tree6068a578722ae89a453e504db6b6c3688dea1d30 /rtl/core/arm810.sv
parenta055bc85bc50897644e7ed62699abff46d818d5f (diff)
Implement sub-word memory accesses
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 eb5ebe1..ce29821 100644
--- a/rtl/core/arm810.sv
+++ b/rtl/core/arm810.sv
@@ -124,13 +124,13 @@ module arm810
.*
);
- word q_shifter;
+ word shifter_base, q_shifter;
logic c_shifter;
core_shifter #(.W(32)) shifter
(
.ctrl(shifter_ctrl),
- .base(alu_b),
+ .base(shifter_base),
.shift(shifter_shift),
.c_in(flags.c),
.q(q_shifter),