Add support for localparam in module header

This commit is contained in:
Clifford Wolf 2017-04-30 17:20:30 +02:00
parent 3bbac5c141
commit e91548b33e
1 changed files with 7 additions and 1 deletions

View File

@ -272,7 +272,13 @@ single_module_para:
if (astbuf1) delete astbuf1;
astbuf1 = new AstNode(AST_PARAMETER);
astbuf1->children.push_back(AstNode::mkconst_int(0, true));
} param_signed param_integer param_range single_param_decl | single_param_decl;
} param_signed param_integer param_range single_param_decl |
TOK_LOCALPARAM {
if (astbuf1) delete astbuf1;
astbuf1 = new AstNode(AST_LOCALPARAM);
astbuf1->children.push_back(AstNode::mkconst_int(0, true));
} param_signed param_integer param_range single_param_decl |
single_param_decl;
module_args_opt:
'(' ')' | /* empty */ | '(' module_args optional_comma ')';