2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-02-17 21:11:56 +08:00

wrpll: cleanup

This commit is contained in:
Sebastien Bourdeauducq 2020-01-18 09:43:43 +08:00
parent 344f8bd12a
commit 6c3e71a83a

View File

@ -150,9 +150,4 @@ class Collector(Module):
NextValue(self.output, tag_collector), NextValue(self.output, tag_collector),
NextState("IDLE") NextState("IDLE")
) )
self.sync += [ self.sync += self.output_update.eq(self.tag_helper_update)
self.output_update.eq(0),
If(self.tag_helper_update,
self.output_update.eq(1)
)
]