diff options
Diffstat (limited to 'rtl/core/decode/ldst/single.sv')
| -rw-r--r-- | rtl/core/decode/ldst/single.sv | 4 |
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; |
