diff options
Diffstat (limited to 'cpp/018address')
-rw-r--r-- | cpp/018address | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/018address b/cpp/018address index 91954ec8..19650e84 100644 --- a/cpp/018address +++ b/cpp/018address @@ -161,7 +161,10 @@ case GET_ADDRESS: { assert(instructions[pc].ingredients[1].types.size() == 1); assert(instructions[pc].ingredients[1].types[0] == 0); // must be literal size_t offset = to_int(instructions[pc].ingredients[1].name); - int src = base_address+offset; + int src = base_address; + for (size_t i = 0; i < offset; ++i) { + src += size_of(reagent(Type[base_type].elements[i][0])); + } trace("run") << "address to copy is " << src; vector<int> result; result.push_back(src); |