diff options
Diffstat (limited to 'rtl/core/control/stall.sv')
| -rw-r--r-- | rtl/core/control/stall.sv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtl/core/control/stall.sv b/rtl/core/control/stall.sv index 4dc56e4..5ac1c7a 100644 --- a/rtl/core/control/stall.sv +++ b/rtl/core/control/stall.sv @@ -36,7 +36,7 @@ module core_control_stall assign updating_flags = final_update_flags || update_flags; always_ff @(posedge clk) - bubble <= next_cycle == ISSUE ? next_bubble : 0; + bubble <= next_cycle == ISSUE && next_bubble; initial bubble = 0; |
