3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-26 10:35:38 +00:00

Added support for notif0/notif1 primitives

This commit is contained in:
Johann Glaser 2013-08-20 11:23:59 +02:00
parent e3aa0514f2
commit 6c4cbc03c2
2 changed files with 8 additions and 4 deletions

View file

@ -169,7 +169,7 @@ namespace VERILOG_FRONTEND {
}
<STRING>. { yymore(); }
and|nand|or|nor|xor|xnor|not|buf|bufif0|bufif1 {
and|nand|or|nor|xor|xnor|not|buf|bufif0|bufif1|notif0|notif1 {
frontend_verilog_yylval.string = new std::string(yytext);
return TOK_PRIMITIVE;
}