summaryrefslogtreecommitdiff
path: root/rtl/core/decode/ldst/single.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-10-09 19:25:27 -0600
committerAlejandro Soto <alejandro@34project.org>2022-10-09 19:25:27 -0600
commit7d95ff01bcd8c42efe118fd1bddaabfca0e937eb (patch)
tree1d61430989192de9f34fb327772ceff7cac5c71a /rtl/core/decode/ldst/single.sv
parent1f1f61bbab1396278a861e46fd65a50d1914585e (diff)
Implement most memory transactions
Diffstat (limited to '')
-rw-r--r--rtl/core/decode/ldst/single.sv4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtl/core/decode/ldst/single.sv b/rtl/core/decode/ldst/single.sv
index 5bcb638..0665178 100644
--- a/rtl/core/decode/ldst/single.sv
+++ b/rtl/core/decode/ldst/single.sv
@@ -18,10 +18,10 @@ module core_decode_ldst_single
assign decode.increment = insn `FIELD_LDST_SINGLE_U;
assign decode.writeback = !p || w;
assign decode.sign_extend = 0;
- assign decode.pre_indexed = p && w;
+ assign decode.pre_indexed = p;
assign decode.unprivileged = !p && w;
assign decode.user_regs = 0;
- assign decode.reg_list = 16'b0;
+ assign decode.regs = 16'b0;
assign p = insn `FIELD_LDST_SINGLE_P;
assign w = insn `FIELD_LDST_SINGLE_W;