mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-29 23:43:16 +00:00
Added Verilog parser support for asserts
This commit is contained in:
parent
3d7a1491aa
commit
9a1eb45c75
4 changed files with 12 additions and 3 deletions
|
@ -80,6 +80,7 @@ std::string AST::type2str(AstNodeType type)
|
|||
X(AST_CELLTYPE)
|
||||
X(AST_IDENTIFIER)
|
||||
X(AST_PREFIX)
|
||||
X(AST_ASSERT)
|
||||
X(AST_FCALL)
|
||||
X(AST_TO_SIGNED)
|
||||
X(AST_TO_UNSIGNED)
|
||||
|
|
|
@ -58,6 +58,7 @@ namespace AST
|
|||
AST_CELLTYPE,
|
||||
AST_IDENTIFIER,
|
||||
AST_PREFIX,
|
||||
AST_ASSERT,
|
||||
|
||||
AST_FCALL,
|
||||
AST_TO_SIGNED,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue