mirror of https://github.com/YosysHQ/yosys.git
Fixed ilang parser: memory width
This commit is contained in:
parent
2279b2a196
commit
08ceb3729e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue