diff options
| author | Alejandro Soto <alejandro@34project.org> | 2023-10-02 11:15:34 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2023-10-02 23:29:46 -0600 |
| commit | fbe3ab39675d338eb6d5388b7deacf98a3a8ae2d (patch) | |
| tree | 6a3a8479031d1434a18af4385713dd48207d3814 /rtl/core/decode/ldst/single.sv | |
| parent | 70d7dc9489f4d5b91d8138e0a341eec4ad7f15b0 (diff) | |
rtl/core: implement ldrex/strex decode
Diffstat (limited to 'rtl/core/decode/ldst/single.sv')
| -rw-r--r-- | rtl/core/decode/ldst/single.sv | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rtl/core/decode/ldst/single.sv b/rtl/core/decode/ldst/single.sv index 402c17b..af096a7 100644 --- a/rtl/core/decode/ldst/single.sv +++ b/rtl/core/decode/ldst/single.sv @@ -17,6 +17,7 @@ module core_decode_ldst_single assign decode.load = insn `FIELD_LDST_LD; assign decode.increment = insn `FIELD_LDST_SINGLE_U; assign decode.writeback = !p || w; + assign decode.exclusive = 0; assign decode.sign_extend = 0; assign decode.pre_indexed = p; assign decode.unprivileged = !p && w; |
