From 1749a9bcfeada34df8bd70600ffd103a58c38f53 Mon Sep 17 00:00:00 2001 From: Lukas Vik <10241915+LukasVik@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:55:25 +0100 Subject: [PATCH] Fix comment typos --- vunit/vhdl/verification_components/src/axi_write_slave.vhd | 4 ++-- .../vhdl/verification_components/test/tb_axi_write_slave.vhd | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vunit/vhdl/verification_components/src/axi_write_slave.vhd b/vunit/vhdl/verification_components/src/axi_write_slave.vhd index 36ac026f7..29c2635e6 100644 --- a/vunit/vhdl/verification_components/src/axi_write_slave.vhd +++ b/vunit/vhdl/verification_components/src/axi_write_slave.vhd @@ -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)"; @@ -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 diff --git a/vunit/vhdl/verification_components/test/tb_axi_write_slave.vhd b/vunit/vhdl/verification_components/test/tb_axi_write_slave.vhd index cf54f393e..e99c547ec 100644 --- a/vunit/vhdl/verification_components/test/tb_axi_write_slave.vhd +++ b/vunit/vhdl/verification_components/test/tb_axi_write_slave.vhd @@ -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 @@ -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;