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
|
@ -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 New Issue