mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
interconnect/axi: remove mode on AXIInterface (not used and breaking LiteDRAM tests)
This commit is contained in:
parent
d324c54eee
commit
935e4effd2
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ def r_description(data_width, id_width):
|
|||
]
|
||||
|
||||
class AXIInterface(Record):
|
||||
def __init__(self, data_width, address_width, mode="master", id_width=1, clock_domain="sys"):
|
||||
def __init__(self, data_width, address_width, id_width=1, clock_domain="sys"):
|
||||
self.data_width = data_width
|
||||
self.address_width = address_width
|
||||
self.id_width = id_width
|
||||
|
|
Loading…
Reference in a new issue