Skip to content

Commit

Permalink
tb_axi_sim_mem: instantiate unused missing signals
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Jul 16, 2024
1 parent bf90008 commit 7164962
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion test/tb_axi_sim_mem.sv
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,21 @@ module tb_axi_sim_mem #(
) i_sim_mem (
.clk_i (clk),
.rst_ni (rst_n),
.axi_slv (axi)
.axi_slv (axi),
.mon_w_valid_o (),
.mon_w_addr_o (),
.mon_w_data_o (),
.mon_w_id_o (),
.mon_w_user_o (),
.mon_w_beat_count_o(),
.mon_w_last_o (),
.mon_r_valid_o (),
.mon_r_addr_o (),
.mon_r_data_o (),
.mon_r_id_o (),
.mon_r_user_o (),
.mon_r_beat_count_o(),
.mon_r_last_o ()
);

// Simply read and write a random memory region.
Expand Down

0 comments on commit 7164962

Please sign in to comment.