mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
cpu/gowin_emcu: Switch pbus to byte addresssing.
This commit is contained in:
parent
5bbcda4d5c
commit
55e2a1cec6
1 changed files with 1 additions and 1 deletions
|
@ -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 = []
|
||||
|
||||
|
|
Loading…
Reference in a new issue