mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-27 10:55:51 +00:00
Added proper === and !== support in constant expressions
This commit is contained in:
parent
11ffa78677
commit
ecc30255ba
9 changed files with 79 additions and 15 deletions
|
@ -232,8 +232,8 @@ supply1 { return TOK_SUPPLY1; }
|
|||
"<=" { return OP_LE; }
|
||||
">=" { return OP_GE; }
|
||||
|
||||
"===" { return OP_EQ; }
|
||||
"!==" { return OP_NE; }
|
||||
"===" { return OP_EQX; }
|
||||
"!==" { return OP_NEX; }
|
||||
|
||||
"~&" { return OP_NAND; }
|
||||
"~|" { return OP_NOR; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue