diff --git a/artiq/gateware/drtio/wrpll/ddmtd.py b/artiq/gateware/drtio/wrpll/ddmtd.py index 06bc33902..a578a3824 100644 --- a/artiq/gateware/drtio/wrpll/ddmtd.py +++ b/artiq/gateware/drtio/wrpll/ddmtd.py @@ -150,9 +150,4 @@ class Collector(Module): NextValue(self.output, tag_collector), NextState("IDLE") ) - self.sync += [ - self.output_update.eq(0), - If(self.tag_helper_update, - self.output_update.eq(1) - ) - ] + self.sync += self.output_update.eq(self.tag_helper_update)