mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
stream/ClockDomainCrossing: Revert with_common_rst to False by default (Previous behavior).
This seems to cause issues in simulation on some cores, this will first have to be fixed before using it as default. Cores requiring it will set it to True explicitly for now.
This commit is contained in:
parent
ed6a6a83a9
commit
f224036138
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ class AsyncFIFO(_FIFOWrapper):
|
|||
# ClockDomainCrossing ------------------------------------------------------------------------------
|
||||
|
||||
class ClockDomainCrossing(Module):
|
||||
def __init__(self, layout, cd_from="sys", cd_to="sys", depth=None, with_common_rst=True):
|
||||
def __init__(self, layout, cd_from="sys", cd_to="sys", depth=None, with_common_rst=False):
|
||||
self.sink = Endpoint(layout)
|
||||
self.source = Endpoint(layout)
|
||||
|
||||
|
|
Loading…
Reference in a new issue