You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
produces a backtrace ending with "nmigen.hdl.cd.DomainError: Signal (clk reset_sync) refers to nonexistent domain 'reset_sync'". Commenting out either of the two ResetSynchronizer lines fixes the issue and allows the design to compile and operate correctly.
It seems ResetSynchronizers creates a "local" domain called reset_sync; maybe the local part isn't being handled correctly?
The text was updated successfully, but these errors were encountered:
Running the following code (which uses two ResetSynchronizers to reset two different clock domains):
produces a backtrace ending with "nmigen.hdl.cd.DomainError: Signal (clk reset_sync) refers to nonexistent domain 'reset_sync'". Commenting out either of the two ResetSynchronizer lines fixes the issue and allows the design to compile and operate correctly.
It seems ResetSynchronizers creates a "local" domain called reset_sync; maybe the local part isn't being handled correctly?
The text was updated successfully, but these errors were encountered: