mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-22 04:47:25 -04:00
Fix ack latching for jumps/branches
This commit is contained in:
parent
6f5367478f
commit
08f2311745
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue