diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-12-11 14:48:08 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-12-16 16:27:20 -0600 |
| commit | ff71bcd0c5425c168f111b8f4a92d0a90a6c9c31 (patch) | |
| tree | 41190239b9220db09d8849afb6d6f6dbbc03f59b /rtl/core/control/ldst/ldst.sv | |
| parent | 6fee344b754464b1fd17f7c0429e6597e51dc74d (diff) | |
Implement data aborts
Diffstat (limited to 'rtl/core/control/ldst/ldst.sv')
| -rw-r--r-- | rtl/core/control/ldst/ldst.sv | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rtl/core/control/ldst/ldst.sv b/rtl/core/control/ldst/ldst.sv index dd5155a..027fb0a 100644 --- a/rtl/core/control/ldst/ldst.sv +++ b/rtl/core/control/ldst/ldst.sv @@ -77,7 +77,8 @@ module core_control_ldst mem_start <= 0; mem_offset <= 0; end else begin - mem_start <= 0; + if(mem_start) + mem_start <= 0; if(next_cycle.issue) begin // TODO: dec.ldst.unprivileged |
