1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-30 08:32:52 +08:00

Drop entire write operation on address decode fail in axi_interconnect

This commit is contained in:
Alex Forencich 2020-10-19 00:13:40 -07:00
parent 2c6185c0a5
commit cd06f0b7dc

View File

@ -646,7 +646,7 @@ always @* begin
axi_addr_valid_next = 1'b0;
if (current_s_axi_wready && current_s_axi_wvalid) begin
if (current_s_axi_wready && current_s_axi_wvalid && current_s_axi_wlast) begin
s_axi_wready_next[s_select] = 1'b0;
s_axi_bvalid_next[s_select] = 1'b1;
state_next = STATE_WAIT_IDLE;