From 7d95ff01bcd8c42efe118fd1bddaabfca0e937eb Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sun, 9 Oct 2022 19:25:27 -0600 Subject: Implement most memory transactions --- rtl/core/decode/ldst/single.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rtl/core/decode/ldst/single.sv') 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; -- cgit v1.2.3