lib.cdc: adjust ResetSynchronizer for new CDC primitive conventions.
Refs #97.
This commit is contained in:
parent
8f659b6cd6
commit
9893e3c044
2 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@ __all__ = ["AsyncResetSynchronizer"]
|
|||
"a clock domain name as an argument, not a clock domain object")
|
||||
class CompatResetSynchronizer(NativeResetSynchronizer):
|
||||
def __init__(self, cd, async_reset):
|
||||
super().__init__(async_reset, cd.name)
|
||||
super().__init__(async_reset, domain=cd.name)
|
||||
|
||||
|
||||
AsyncResetSynchronizer = CompatResetSynchronizer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue