cpu/gowin_emcu: Switch pbus to byte addresssing.

This commit is contained in:
Florent Kermarrec 2024-01-04 13:13:21 +01:00
parent 5bbcda4d5c
commit 55e2a1cec6
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class GowinEMCU(CPU):
def __init__(self, platform, variant="standard"):
self.platform = platform
self.reset = Signal()
self.pbus = wishbone.Interface(data_width=32, adr_width=30, addressing="word")
self.pbus = wishbone.Interface(data_width=32, address_width=32, addressing="byte")
self.periph_buses = [self.pbus]
self.memory_buses = []