From 41b263bb39478393a302b284643a590779902f6c Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Mon, 31 Oct 2022 16:05:15 -0600 Subject: Add MUL control cycle --- rtl/core/control/stall.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rtl/core/control/stall.sv') 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; -- cgit v1.2.3