Skip to content

Commit

Permalink
Fix comment typos
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasVik authored and LarsAsplund committed Mar 11, 2024
1 parent 2e6846f commit 1749a9b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions vunit/vhdl/verification_components/src/axi_write_slave.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ begin
variable response_time : time;
variable has_response_time : boolean := false;
begin
assert awid'length = bid'length report "arwid vs wid data width mismatch";
assert awid'length = bid'length report "awid vs wid data width mismatch";
assert (awlen'length = 4 or
awlen'length = 8) report "awlen must be either 4 (AXI3) or 8 (AXI4)";

Expand Down Expand Up @@ -256,7 +256,7 @@ begin
end if;

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

if self.should_check_well_behaved and num_beats_now > 0 and bready /= '1' then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ begin
bready <= '1';
wait until rising_edge(clk);
write_addr(x"0", base_address(buf), len => 2, log_size => log_data_size, burst => axi_burst_type_incr);
check_only_log(axi_slave_logger, "Burst not well behaved, vwalid was not high during active burst", failure);
check_only_log(axi_slave_logger, "Burst not well behaved, wvalid was not high during active burst", failure);
unmock(axi_slave_logger);

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

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

end if;
Expand Down

0 comments on commit 1749a9b

Please sign in to comment.