Skip to content

Commit

Permalink
litex/soc/integration/soc: SoCBusHandler 64bits address width support
Browse files Browse the repository at this point in the history
  • Loading branch information
trabucayre committed Nov 30, 2023
1 parent fba581f commit a4ead5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex/soc/integration/soc.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def __init__(self, origin, busword, obj):
class SoCBusHandler(LiteXModule):
supported_standard = ["wishbone", "axi-lite", "axi"]
supported_data_width = [32, 64, 128, 256, 512]
supported_address_width = [32]
supported_address_width = [32, 64]

# Creation -------------------------------------------------------------------------------------
def __init__(self, name="SoCBusHandler",
Expand Down

0 comments on commit a4ead5c

Please sign in to comment.