Skip to content

Commit

Permalink
cpu/gowin_emcu: Switch pbus to byte addresssing.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jan 4, 2024
1 parent 5bbcda4 commit 55e2a1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/cores/cpu/gowin_emcu/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def gcc_flags(self):
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 = []

Expand Down

0 comments on commit 55e2a1c

Please sign in to comment.