diff --git a/migen/fhdl/convtools.py b/migen/fhdl/convtools.py index f9798b5d4..a8f30361a 100644 --- a/migen/fhdl/convtools.py +++ b/migen/fhdl/convtools.py @@ -107,6 +107,5 @@ def InsertReset(rst, sl): targets = ListTargets(sl) resetcode = [] for t in targets: - if not t.variable: - resetcode.append(Assign(t, t.reset)) - return If(rst, resetcode, sl) \ No newline at end of file + resetcode.append(Assign(t, t.reset)) + return If(rst, resetcode, sl)