Skip to content

Commit

Permalink
interconnect/wishbone/RegionsRemapper: Connect adr by default when no…
Browse files Browse the repository at this point in the history
… remapping.
  • Loading branch information
enjoy-digital committed Feb 13, 2024
1 parent 5ee746f commit 595118f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/interconnect/wishbone.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def __init__(self, master, slave, src_regions, dst_regions):
}[master.addressing]

# Connect Master to Slave.
self.comb += master.connect(slave, omit={"adr"})
self.comb += master.connect(slave)

# Remap Regions.
for src_region, dst_region in zip(src_regions, dst_regions):
Expand Down

0 comments on commit 595118f

Please sign in to comment.