3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-29 07:27:58 +00:00

Fixed memory->start_offset handling

This commit is contained in:
Clifford Wolf 2015-01-01 12:56:01 +01:00
parent 17c1c55473
commit eefe78be09
3 changed files with 12 additions and 6 deletions

View file

@ -183,6 +183,9 @@ memory_options:
memory_options TOK_SIZE TOK_INT {
current_memory->size = $3;
} |
memory_options TOK_OFFSET TOK_INT {
current_memory->start_offset = $3;
} |
/* empty */;
cell_stmt: