|
|
|
@ -1050,8 +1050,8 @@ class Instruction: |
|
|
|
|
return [global_state] |
|
|
|
|
|
|
|
|
|
# Copy memory |
|
|
|
|
global_state.mstate.mem_extend(memory_out_offset, min(memory_out_size.as_long(), len(global_state.last_return_data))) |
|
|
|
|
for i in range(min(memory_out_size.as_long(), len(global_state.last_return_data))): |
|
|
|
|
global_state.mstate.mem_extend(memory_out_offset, min(memory_out_size, len(global_state.last_return_data))) |
|
|
|
|
for i in range(min(memory_out_size, len(global_state.last_return_data))): |
|
|
|
|
global_state.mstate.memory[i + memory_out_offset] = global_state.last_return_data[i] |
|
|
|
|
|
|
|
|
|
# Put return value on stack |
|
|
|
@ -1123,8 +1123,8 @@ class Instruction: |
|
|
|
|
|
|
|
|
|
# Copy memory |
|
|
|
|
global_state.mstate.mem_extend(memory_out_offset, |
|
|
|
|
min(memory_out_size.as_long(), len(global_state.last_return_data))) |
|
|
|
|
for i in range(min(memory_out_size.as_long(), len(global_state.last_return_data))): |
|
|
|
|
min(memory_out_size, len(global_state.last_return_data))) |
|
|
|
|
for i in range(min(memory_out_size, len(global_state.last_return_data))): |
|
|
|
|
global_state.mstate.memory[i + memory_out_offset] = global_state.last_return_data[i] |
|
|
|
|
|
|
|
|
|
# Put return value on stack |
|
|
|
|