diff options
Diffstat (limited to 'src/target/mips32.c')
-rw-r--r-- | src/target/mips32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/target/mips32.c b/src/target/mips32.c index abb4255..9ac2507 100644 --- a/src/target/mips32.c +++ b/src/target/mips32.c @@ -461,6 +461,8 @@ int mips32_run_algorithm(struct target *target, int num_mem_params, } for (int i = 0; i < num_mem_params; i++) { + if (mem_params[i].direction == PARAM_IN) + continue; retval = target_write_buffer(target, mem_params[i].address, mem_params[i].size, mem_params[i].value); if (retval != ERROR_OK) |