Skip to content

Commit 1749a9b

Browse files
LukasVikLarsAsplund
authored andcommitted
Fix comment typos
1 parent 2e6846f commit 1749a9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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

vunit/vhdl/verification_components/test/tb_axi_write_slave.vhd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ begin
569569
bready <= '1';
570570
wait until rising_edge(clk);
571571
write_addr(x"0", base_address(buf), len => 2, log_size => log_data_size, burst => axi_burst_type_incr);
572-
check_only_log(axi_slave_logger, "Burst not well behaved, vwalid was not high during active burst", failure);
572+
check_only_log(axi_slave_logger, "Burst not well behaved, wvalid was not high during active burst", failure);
573573
unmock(axi_slave_logger);
574574

575575
elsif run("Test well behaved check fails when bready not high during active burst") then
@@ -604,7 +604,7 @@ begin
604604
assert awready = '0';
605605
wait until mock_queue_length > 0 for 0 ns;
606606

607-
check_only_log(axi_slave_logger, "Burst not well behaved, vwalid was not high during active burst", failure);
607+
check_only_log(axi_slave_logger, "Burst not well behaved, wvalid was not high during active burst", failure);
608608
unmock(axi_slave_logger);
609609

610610
end if;

0 commit comments

Comments
 (0)