Skip to content

Commit

Permalink
axi_to_mem_interleaved: fix busy signal
Browse files Browse the repository at this point in the history
  • Loading branch information
phsauter authored and thommythomaso committed Jan 22, 2025
1 parent 541eba2 commit 9fde595
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/axi_to_mem_interleaved.sv
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ module axi_to_mem_interleaved #(
logic [NumBanks-1:0] r_mem_rvalid, w_mem_rvalid;
mem_data_t [NumBanks-1:0] r_mem_rdata, w_mem_rdata;

assign busy_o = w_busy | r_busy;

// split AXI bus in read and write
axi_demux_simple #(
.AxiIdWidth ( IdWidth ),
Expand Down

0 comments on commit 9fde595

Please sign in to comment.