decorators: fix ControlInserter
This commit is contained in:
parent
db76defa2a
commit
f26ad97624
|
@ -81,7 +81,7 @@ class ControlInserter(ModuleTransformer):
|
||||||
to_insert = [(getattr(i, self.control_name), cdn)]
|
to_insert = [(getattr(i, self.control_name), cdn)]
|
||||||
else:
|
else:
|
||||||
to_insert = [(getattr(i, self.control_name + "_" + cdn), cdn)
|
to_insert = [(getattr(i, self.control_name + "_" + cdn), cdn)
|
||||||
for cdn in clock_domains]
|
for cdn in self.clock_domains]
|
||||||
self.transform_fragment_insert(i, f, to_insert)
|
self.transform_fragment_insert(i, f, to_insert)
|
||||||
|
|
||||||
class CEInserter(ControlInserter):
|
class CEInserter(ControlInserter):
|
||||||
|
|
Loading…
Reference in New Issue