summaryrefslogtreecommitdiff
path: root/frontends/ilang
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-01-01 12:56:01 +0100
committerClifford Wolf <clifford@clifford.at>2015-01-01 12:56:01 +0100
commiteefe78be094f8009cdb4a7a0e657e86b9624adf1 (patch)
tree6bda1ad89e9b4a01b288d3193d23771e17a4190e /frontends/ilang
parent17c1c5547365ae9ec58a1600a67c2b878449de1f (diff)
Fixed memory->start_offset handling
Diffstat (limited to 'frontends/ilang')
-rw-r--r--frontends/ilang/ilang_parser.y3
1 files changed, 3 insertions, 0 deletions
diff --git a/frontends/ilang/ilang_parser.y b/frontends/ilang/ilang_parser.y
index 4e0981b5..4661d577 100644
--- a/frontends/ilang/ilang_parser.y
+++ b/frontends/ilang/ilang_parser.y
@@ -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: