From 131f5e4a3b057abc56023472845a6dcfa5bf5946 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 16 Sep 2017 14:13:01 +0800 Subject: [PATCH] rtio/sed/LaneDistributor: fix CRI address --- artiq/gateware/rtio/sed/lane_distributor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/gateware/rtio/sed/lane_distributor.py b/artiq/gateware/rtio/sed/lane_distributor.py index 6e877c3bf..aee932157 100644 --- a/artiq/gateware/rtio/sed/lane_distributor.py +++ b/artiq/gateware/rtio/sed/lane_distributor.py @@ -48,7 +48,7 @@ class LaneDistributor(Module): lio.payload.timestamp.eq(self.cri.timestamp), ] if hasattr(lio.payload, "address"): - self.comb += lio.payload.address.eq(self.cri.address) + self.comb += lio.payload.address.eq(self.cri.o_address) if hasattr(lio.payload, "data"): self.comb += lio.payload.data.eq(self.cri.o_data)