Skip to content

Commit

Permalink
Fix initiation of SBA reads not being masked by previous SBA error or…
Browse files Browse the repository at this point in the history
… busy error.
  • Loading branch information
Wren6991 committed Mar 17, 2024
1 parent c11581e commit af08c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdl/debug/dm/hazard3_dm.v
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ always @ (posedge clk or negedge rst_n) begin
sberror <= SBERROR_BADADDR;
end
end
end else if (sb_want_start_read || sb_want_start_write && ~|sberror && !sbbusyerror) begin
end else if ((sb_want_start_read || sb_want_start_write) && ~|sberror && !sbbusyerror) begin
if (sb_badsize) begin
sberror <= SBERROR_BADSIZE;
end else if (sb_badalign) begin
Expand Down

0 comments on commit af08c0b

Please sign in to comment.