diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-10 10:11:33 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-10 10:11:33 -0600 |
| commit | acca3eb31a051f335c51306786bb972c21634998 (patch) | |
| tree | 9f8fc3da1a8494e88c5043735862e56c54356bc0 /rtl/core/decode/ldst | |
| parent | 0f89db514bd174def590645c30a7bd358ea6be93 (diff) | |
Fix reset glitches
Diffstat (limited to '')
| -rw-r--r-- | rtl/core/decode/ldst/addr.sv | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rtl/core/decode/ldst/addr.sv b/rtl/core/decode/ldst/addr.sv index 4a61231..345f0ea 100644 --- a/rtl/core/decode/ldst/addr.sv +++ b/rtl/core/decode/ldst/addr.sv @@ -10,5 +10,6 @@ module core_decode_ldst_addr assign alu.op = ldst.increment ? `ALU_ADD : `ALU_SUB; assign alu.rn = ldst.rn; assign alu.rd = ldst.rd; + assign alu.uses_rn = 1; endmodule |
