-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Previously working example now fails on newest version #279
Comments
I recently got sby working (after seeing similar error message IIRC) for some basic example by using the latest release of oss-cad-suite. |
The problem seems to be that in previous yosys, it synthesize $assume(xxxx) to be individual cell. But in latest version it use $check cell widely. But in $check cell the TRG_WIDTH is not allowed to be set larger than 1, when So that the |
This example is fully a synchronous design, so that it works as usual. |
I recently updated to the newest version of sby and yosys. Now some of the formal proofs generated by SpinalHDL no longer work (SpinalHDL issue). The error is:
prep: ERROR: $check cell $cover$anon.sv:56$6 with TRG_WIDTH > 1 is not support by async2sync, use clk2fflogic.
If I add
multiclock
to[options]
orclk2fflogic
to[script]
, then I get:Here is an example:
The text was updated successfully, but these errors were encountered: