mirror of https://github.com/m-labs/artiq.git
rtio/wishbone: make replace configurable
This commit is contained in:
parent
03b53c3af9
commit
2e39802a61
|
@ -5,7 +5,7 @@ from artiq.gateware.rtio import rtlink
|
||||||
|
|
||||||
|
|
||||||
class RT2WB(Module):
|
class RT2WB(Module):
|
||||||
def __init__(self, address_width, wb=None):
|
def __init__(self, address_width, wb=None, rtio_enable_replace=False):
|
||||||
if wb is None:
|
if wb is None:
|
||||||
wb = wishbone.Interface()
|
wb = wishbone.Interface()
|
||||||
self.wb = wb
|
self.wb = wb
|
||||||
|
@ -14,7 +14,7 @@ class RT2WB(Module):
|
||||||
len(wb.dat_w),
|
len(wb.dat_w),
|
||||||
address_width + 1,
|
address_width + 1,
|
||||||
suppress_nop=False,
|
suppress_nop=False,
|
||||||
enable_replace=False),
|
enable_replace=rtio_enable_replace),
|
||||||
rtlink.IInterface(
|
rtlink.IInterface(
|
||||||
len(wb.dat_r),
|
len(wb.dat_r),
|
||||||
timestamped=False)
|
timestamped=False)
|
||||||
|
|
Loading…
Reference in New Issue