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

Merge branch 'pr_elab_sys_tasks' of https://github.com/udif/yosys into clifford/pr983

This commit is contained in:
Clifford Wolf 2019-06-07 12:08:42 +02:00
commit a3bbc5365b
10 changed files with 107 additions and 5 deletions

View file

@ -311,6 +311,11 @@ supply1 { return TOK_SUPPLY1; }
return TOK_ID;
}
"$"(info|warning|error|fatal) {
frontend_verilog_yylval.string = new std::string(yytext);
return TOK_ELAB_TASK;
}
"$signed" { return TOK_TO_SIGNED; }
"$unsigned" { return TOK_TO_UNSIGNED; }