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
Because this is a process, without proc, yosys returns the error ERROR: Gold module contains memories or processes. Run 'memory' or 'proc' respectively. when running equiv.sh on Verilog modules that contain FDRE.
@matth2k I have unified the bin scripts into one Python script. The Python script runtool.py comes with an additional script runtool that allows commands with the format runtool [subcommand] [input.v] [output.v] [options] to be executed after source utils/setup.sh is done. The Python script also does equiv.sh [unsynthesized input .v file] [EqMap output .v file] at the end of each subcommand (eqmap, eqmap_vivado, lvv, etc). I also decided to enforce an output .v file, since otherwise the terminal would be flooded by the equiv checking output immediately after the EqMap is written to stdout, making the EqMap stdout output inconvenient to read.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@matth2k simlib.v defines FDRE as:
Because this is a process, without
proc, yosys returns the errorERROR: Gold module contains memories or processes. Run 'memory' or 'proc' respectively.when running equiv.sh on Verilog modules that contain FDRE.