Skip to content

Commit dc43bd4

Browse files
committed
Tie off new port
1 parent a534f04 commit dc43bd4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/axi_demux_simple.sv

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,8 @@ module axi_demux_simple #(
224224
.push_mst_select_i ( slv_aw_select_i ),
225225
.push_i ( w_cnt_up ),
226226
.pop_axi_id_i ( slv_resp_o.b.id[0+:AxiLookBits] ),
227-
.pop_i ( slv_resp_o.b_valid & slv_req_i.b_ready )
227+
.pop_i ( slv_resp_o.b_valid & slv_req_i.b_ready ),
228+
.any_outstanding_trx_o ( )
228229
);
229230
// pop from ID counter on outward transaction
230231
end
@@ -369,7 +370,8 @@ module axi_demux_simple #(
369370
.push_mst_select_i ( slv_ar_select_i ),
370371
.push_i ( ar_push ),
371372
.pop_axi_id_i ( slv_resp_o.r.id[0+:AxiLookBits] ),
372-
.pop_i ( slv_resp_o.r_valid & slv_req_i.r_ready & slv_resp_o.r.last )
373+
.pop_i ( slv_resp_o.r_valid & slv_req_i.r_ready & slv_resp_o.r.last ),
374+
.any_outstanding_trx_o ( )
373375
);
374376
end
375377

0 commit comments

Comments
 (0)