diff --git a/artiq/gateware/rtio/phy/sawg.py b/artiq/gateware/rtio/phy/sawg.py index 093a235c4..7968eb2b6 100644 --- a/artiq/gateware/rtio/phy/sawg.py +++ b/artiq/gateware/rtio/phy/sawg.py @@ -17,7 +17,8 @@ class Channel(_ChannelPHY): self.phys = [] cfg = self.i[0] rl = rtlink.Interface(rtlink.OInterface( - data_width=len(cfg.data), address_width=len(cfg.addr))) + data_width=len(cfg.data), address_width=len(cfg.addr), + enable_replace=False)) self.comb += [ cfg.stb.eq(rl.o.stb), rl.o.busy.eq(~cfg.ack),