Skip to content

Commit 5e05a75

Browse files
committed
Fix comment typos
1 parent bd98c17 commit 5e05a75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vunit/vhdl/verification_components/src/axi_write_slave.vhd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ begin
143143
variable response_time : time;
144144
variable has_response_time : boolean := false;
145145
begin
146-
assert awid'length = bid'length report "arwid vs wid data width mismatch";
146+
assert awid'length = bid'length report "awid vs wid data width mismatch";
147147
assert (awlen'length = 4 or
148148
awlen'length = 8) report "awlen must be either 4 (AXI3) or 8 (AXI4)";
149149

@@ -256,7 +256,7 @@ begin
256256
end if;
257257

258258
if self.should_check_well_behaved and num_beats_now > 0 and wvalid /= '1' then
259-
self.fail("Burst not well behaved, vwalid was not high during active burst");
259+
self.fail("Burst not well behaved, wvalid was not high during active burst");
260260
end if;
261261

262262
if self.should_check_well_behaved and num_beats_now > 0 and bready /= '1' then

0 commit comments

Comments
 (0)