We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
sdff* liberty files should be parseable by yosys.
ERROR: Syntax error in liberty file on line 4303.
yosys -p "read_liberty cells/sdffsnq/gf180mcu_fd_sc_mcu7t5v0__sdffsnq_4__tt_025C_1v80.lib"
The issue is in the test_cell() stanzas, the clear and preset statements are not quoted, eg:
test_cell()
preset : !SETN ;
Adding quotes fixes it, and the liberty spec suggests they are required:
preset : "!SETN" ;
The text was updated successfully, but these errors were encountered:
I can submit a patch, but I wasn't sure if the liberty files are auto created from the json or not.
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
sdff* liberty files should be parseable by yosys.
Actual Behavior
Steps to Reproduce the Problem
The issue is in the
test_cell()
stanzas, the clear and preset statements are not quoted, eg:Adding quotes fixes it, and the liberty spec suggests they are required:
The text was updated successfully, but these errors were encountered: