diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-10-17 01:39:00 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-10-17 01:39:00 -0600 |
| commit | e81d84541c048deb4bafc7549e3feefc20482daa (patch) | |
| tree | 713412d66b15da8722c7e0abd7dc7624f3735cf8 /rtl/core/control/control.sv | |
| parent | 1afd2cbcda9ab9d356604b09e551b7ff994671f2 (diff) | |
Break sub-100MHz critical path involving wb_alu_flags
Diffstat (limited to '')
| -rw-r--r-- | rtl/core/control/control.sv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/core/control/control.sv b/rtl/core/control/control.sv index 1c20535..9e94c3e 100644 --- a/rtl/core/control/control.sv +++ b/rtl/core/control/control.sv @@ -148,6 +148,7 @@ module core_control branch <= 0; writeback <= 0; update_flags <= 0; + wb_alu_flags <= alu_flags; unique case(cycle) TRANSFER: wr_value <= mem_data_rd; @@ -198,7 +199,6 @@ module core_control final_update_flags <= dec_update_flags; end - wb_alu_flags <= alu_flags; update_flags <= final_update_flags; writeback <= final_writeback; rd <= final_rd; |
