diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-11-07 19:07:55 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-11-07 19:07:55 -0600 |
| commit | 4ccb96c1aaf348f677954171751b58ad8f4dccf1 (patch) | |
| tree | 50fc326e176570a151b0270d02ea99bec737315f /rtl/core/control/writeback.sv | |
| parent | c67a1007045a9bf0282c26da74149723c6a2941d (diff) | |
Remove false dependencies on control.issue (long combinational)
Diffstat (limited to 'rtl/core/control/writeback.sv')
| -rw-r--r-- | rtl/core/control/writeback.sv | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rtl/core/control/writeback.sv b/rtl/core/control/writeback.sv index a4465ff..6506ae5 100644 --- a/rtl/core/control/writeback.sv +++ b/rtl/core/control/writeback.sv @@ -108,8 +108,7 @@ module core_control_writeback unique case(next_cycle) ISSUE: - if(issue) - final_rd <= dec_data.rd; + final_rd <= dec_data.rd; TRANSFER: if((cycle != TRANSFER || mem_ready) && pop_valid) |
