Skip to content

Commit

Permalink
axi_chan_compare: Fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed May 4, 2023
1 parent 58d17f3 commit e777576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axi_chan_compare.sv
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ module axi_chan_compare #(
aw_exp.id = 'X;
aw_recv.id = 'X;
end
if (aw_exp.aw !== aw_recv) begin
if (aw_exp !== aw_recv) begin
$error("AW mismatch!");
print_aw(aw_exp, aw_recv);
end
Expand Down

0 comments on commit e777576

Please sign in to comment.