diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-10-24 00:26:59 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-10-24 00:26:59 -0600 |
| commit | bd8f0ccd30fb1bebf0e13ade79d1a7f304c45b85 (patch) | |
| tree | 32ffe0ae7d5b733a467a541b11925c8883d7d4ff /rtl/core/control/stall.sv | |
| parent | ece67a436f30f468b25b72d30adf7523bce8f330 (diff) | |
Split cycle logic out of control.sv
Diffstat (limited to 'rtl/core/control/stall.sv')
| -rw-r--r-- | rtl/core/control/stall.sv | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rtl/core/control/stall.sv b/rtl/core/control/stall.sv index c2f6a4d..4dc56e4 100644 --- a/rtl/core/control/stall.sv +++ b/rtl/core/control/stall.sv @@ -38,6 +38,7 @@ module core_control_stall always_ff @(posedge clk) bubble <= next_cycle == ISSUE ? next_bubble : 0; - initial bubble = 0; + initial + bubble = 0; endmodule |
