interconnect/axi: set default data_width/address_width to 32-bit.

This commit is contained in:
Florent Kermarrec 2020-02-28 13:19:10 +01:00
parent 8e1d528663
commit 6be7e9c33d
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ def r_description(data_width, id_width):
]
class AXIInterface(Record):
def __init__(self, data_width, address_width, id_width=1, clock_domain="sys"):
def __init__(self, data_width=32, address_width=32, id_width=1, clock_domain="sys"):
self.data_width = data_width
self.address_width = address_width
self.id_width = id_width
@ -89,7 +89,7 @@ def r_lite_description(data_width):
]
class AXILiteInterface(Record):
def __init__(self, data_width, address_width, clock_domain="sys"):
def __init__(self, data_width=32, address_width=32, clock_domain="sys"):
self.data_width = data_width
self.address_width = address_width
self.clock_domain = clock_domain