mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
decorators: fix ControlInserter
This commit is contained in:
parent
db76defa2a
commit
f26ad97624
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ class ControlInserter(ModuleTransformer):
|
|||
to_insert = [(getattr(i, self.control_name), cdn)]
|
||||
else:
|
||||
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)
|
||||
|
||||
class CEInserter(ControlInserter):
|
||||
|
|
Loading…
Reference in a new issue