Fix ack latching for jumps/branches

This commit is contained in:
Sven Stucki 2015-08-24 06:11:14 +02:00
parent 6f5367478f
commit 08f2311745

View file

@ -214,7 +214,7 @@ module if_stage
if (stall_id_i == 1'b0)
ack_stalled_n = 1'b0;
end else begin
if (ack_int && stall_id_i)
if (ack_int && stall_id_i && jump_in_id_i == `BRANCH_NONE)
ack_stalled_n = 1'b1;
end
end