summaryrefslogtreecommitdiff
path: root/rtl/core/control/stall.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-10-31 16:05:15 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-01 23:04:24 -0600
commit41b263bb39478393a302b284643a590779902f6c (patch)
tree85a37c65c356aad3303e539228c3c770e166b907 /rtl/core/control/stall.sv
parentb171ab92f6f7787ca483b83d4b34bbb97f167896 (diff)
Add MUL control cycle
Diffstat (limited to 'rtl/core/control/stall.sv')
-rw-r--r--rtl/core/control/stall.sv2
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;