3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 14:13:23 +00:00

Added support for bufif0/bufif1 primitives

This commit is contained in:
Clifford Wolf 2013-08-19 19:50:04 +02:00
parent 4214561890
commit 8656b1c08f
2 changed files with 57 additions and 31 deletions

View file

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