Fixed ilang parser: memory width

This commit is contained in:
Clifford Wolf 2013-11-20 19:55:52 +01:00
parent 2279b2a196
commit 08ceb3729e
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ memory_stmt:
memory_options:
memory_options TOK_WIDTH TOK_INT {
current_wire->width = $3;
current_memory->width = $3;
} |
memory_options TOK_SIZE TOK_INT {
current_memory->size = $3;