mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
interconnect/wishbone: increase WB address width to 31
This is needed to support memory regions up to 4GB in size (currently limited to 2GB, or 0x8000_0000). FIXME: CI complains about assertions re. axi_lite.address_width in relationship to len(wishbone.adr) and wishbone_adr_shift, which seems to be a problem on the 32bit (vexriscv?) CPU used for CI, but seems to work fine on Rocket. Signed-off-by: Gabriel Somlo <gsomlo@gmail.com> foo
This commit is contained in:
parent
b8c9da81ea
commit
70eae5cbf9
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ _layout = [
|
|||
|
||||
|
||||
class Interface(Record):
|
||||
def __init__(self, data_width=32, adr_width=30):
|
||||
def __init__(self, data_width=32, adr_width=31):
|
||||
self.data_width = data_width
|
||||
self.adr_width = adr_width
|
||||
Record.__init__(self, set_layout_parameters(_layout,
|
||||
|
|
Loading…
Reference in a new issue