From dda4002ae173eb9c136c7e54778bd33b6b619b51 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 30 Nov 2014 10:50:48 +0800 Subject: [PATCH] rtio/phy: fix input synchronization --- soc/artiqlib/rtio/phy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/artiqlib/rtio/phy.py b/soc/artiqlib/rtio/phy.py index 9e5577db7..5ce082982 100644 --- a/soc/artiqlib/rtio/phy.py +++ b/soc/artiqlib/rtio/phy.py @@ -19,7 +19,7 @@ class SimplePHY(Module): i_pad = Signal() self.sync.rio += ts.oe.eq(chif.oe) self.comb += ts.o.eq(o_pad) - self.specials += MultiReg(ts.i, i_pad), \ + self.specials += MultiReg(ts.i, i_pad, "rio"), \ ts.get_tristate(pad) i_pad_d = Signal()