lib.cdc: in AsyncFFSynchronizer(), rename domain= to o_domain=.
This is for consistency with other synchronizers. Fixes #467.
This commit is contained in:
parent
630c0fd99a
commit
0802f943ba
7 changed files with 13 additions and 13 deletions
|
|
@ -66,7 +66,7 @@ class AsyncFFSynchronizerTestCase(FHDLTestCase):
|
|||
def test_edge_wrong(self):
|
||||
with self.assertRaisesRegex(ValueError,
|
||||
r"^AsyncFFSynchronizer async edge must be one of 'pos' or 'neg', not 'xxx'$"):
|
||||
AsyncFFSynchronizer(Signal(), Signal(), domain="sync", async_edge="xxx")
|
||||
AsyncFFSynchronizer(Signal(), Signal(), o_domain="sync", async_edge="xxx")
|
||||
|
||||
def test_pos_edge(self):
|
||||
i = Signal()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue