mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-25 10:05:33 +00:00
Add $allconst and $allseq cell types
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
2521ed305e
commit
eb67a7532b
11 changed files with 67 additions and 9 deletions
|
@ -1335,7 +1335,9 @@ rvalue:
|
|||
$$ = new AstNode(AST_IDENTIFIER, $2);
|
||||
$$->str = *$1;
|
||||
delete $1;
|
||||
if ($2 == nullptr && ($$->str == "\\$initstate" || $$->str == "\\$anyconst" || $$->str == "\\$anyseq"))
|
||||
if ($2 == nullptr && ($$->str == "\\$initstate" ||
|
||||
$$->str == "\\$anyconst" || $$->str == "\\$anyseq" ||
|
||||
$$->str == "\\$allconst" || $$->str == "\\$allseq"))
|
||||
$$->type = AST_FCALL;
|
||||
} |
|
||||
hierarchical_id non_opt_multirange {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue