mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-02 20:31:22 +00:00
Fixed ilang parser: memory width
This commit is contained in:
parent
2279b2a196
commit
08ceb3729e
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ memory_stmt:
|
||||||
|
|
||||||
memory_options:
|
memory_options:
|
||||||
memory_options TOK_WIDTH TOK_INT {
|
memory_options TOK_WIDTH TOK_INT {
|
||||||
current_wire->width = $3;
|
current_memory->width = $3;
|
||||||
} |
|
} |
|
||||||
memory_options TOK_SIZE TOK_INT {
|
memory_options TOK_SIZE TOK_INT {
|
||||||
current_memory->size = $3;
|
current_memory->size = $3;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue