mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-17 20:55:45 +00:00
Merge branch 'YosysHQ:main' into main
This commit is contained in:
commit
f67da2df2f
9 changed files with 99 additions and 9 deletions
|
|
@ -102,6 +102,9 @@ static bool parse_next_state(const LibertyAst *cell, const LibertyAst *attr, std
|
|||
} else if (expr[0] == '!') {
|
||||
data_name = expr.substr(1, expr.size()-1);
|
||||
data_not_inverted = false;
|
||||
} else if (expr[0] == '(' && expr[expr.size() - 1] == ')') {
|
||||
data_name = expr.substr(1, expr.size() - 2);
|
||||
data_not_inverted = true;
|
||||
} else {
|
||||
data_name = expr;
|
||||
data_not_inverted = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue