mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-25 18:15:34 +00:00
added while and repeat support to verilog parser
This commit is contained in:
parent
f9c1cd5edb
commit
b5cd7a0179
4 changed files with 31 additions and 1 deletions
|
@ -140,6 +140,8 @@ namespace VERILOG_FRONTEND {
|
|||
"default" { return TOK_DEFAULT; }
|
||||
"generate" { return TOK_GENERATE; }
|
||||
"endgenerate" { return TOK_ENDGENERATE; }
|
||||
"while" { return TOK_WHILE; }
|
||||
"repeat" { return TOK_REPEAT; }
|
||||
|
||||
"assert"([ \t\r\n]+"property")? { return TOK_ASSERT; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue