interconnect/wishbone/RegionsRemapper: Connect adr by default when no remapping.

This commit is contained in:
Florent Kermarrec 2024-02-13 18:31:05 +01:00
parent 5ee746f178
commit 595118fd5d
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class RegionsRemapper(LiteXModule):
}[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):