Skip to content

Commit

Permalink
src/axi_isolate.sv: Tie unused demux port in passthrough termination
Browse files Browse the repository at this point in the history
  • Loading branch information
alex96295 committed Nov 15, 2024
1 parent 853ede2 commit 1adb250
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/axi_isolate.sv
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ module axi_isolate #(
end else begin
assign demux_req[0] = slv_req_i;
assign slv_resp_o = demux_rsp[0];
// In pass-through, silence the second demux port as it is not used
assign demux_req[1] = '0;
assign demux_rsp[1] = '0;
end

axi_isolate_inner #(
Expand Down

0 comments on commit 1adb250

Please sign in to comment.