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/control/ldst/ldst.sv | |
| parent | 0f89db514bd174def590645c30a7bd358ea6be93 (diff) | |
Fix reset glitches
Diffstat (limited to 'rtl/core/control/ldst/ldst.sv')
| -rw-r--r-- | rtl/core/control/ldst/ldst.sv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/core/control/ldst/ldst.sv b/rtl/core/control/ldst/ldst.sv index baf0054..ef91775 100644 --- a/rtl/core/control/ldst/ldst.sv +++ b/rtl/core/control/ldst/ldst.sv @@ -52,9 +52,9 @@ module core_control_ldst ldst_increment <= 0; mem_addr <= {$bits(mem_addr){1'b0}}; + mem_regs <= {$bits(mem_regs){1'b0}}; mem_write <= 0; mem_start <= 0; - mem_regs <= {$bits(mem_regs){1'b0}}; mem_offset <= 0; end else unique case(next_cycle) ISSUE: begin |
