Skip to content

Commit

Permalink
Group signal assignments a little more logically
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasVik authored and LarsAsplund committed Mar 11, 2024
1 parent e44b235 commit 2e6846f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vunit/vhdl/verification_components/src/axi_lite_master.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,8 @@ begin
expected_resp := pop_std_ulogic_vector(request_msg) when is_axi_lite_msg(msg_type) else axi_resp_okay;
push(reply_queue, request_msg);

araddr <= addr_this_transaction;

arvalid <= '1';
araddr <= addr_this_transaction;
wait until (arvalid and arready) = '1' and rising_edge(aclk);
arvalid <= '0';
drive_ar_invalid;
Expand Down

0 comments on commit 2e6846f

Please sign in to comment.