litex/soc/integration/soc: SoCBusHandler 64bits address width support

This commit is contained in:
Gwenhael Goavec-Merou 2023-11-30 17:47:32 +01:00
parent fba581f77e
commit a4ead5cab9
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ class SoCCSRRegion:
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",