Skip to content

Commit

Permalink
channel_coupler: Fix aw fifo ready to keep aw stable
Browse files Browse the repository at this point in the history
  • Loading branch information
thommythomaso committed Sep 7, 2022
1 parent 591f9fc commit 3572ece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/idma_channel_coupler.sv
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ module idma_channel_coupler #(
end

// assign outputs
assign aw_ready = aw_sent;
assign aw_ready = aw_valid_o & aw_ready_i;

// fall through register to decouple the aw valid signal from the aw ready
// now payload is required; just the decoupling of the handshaking signals
Expand Down

0 comments on commit 3572ece

Please sign in to comment.