summaryrefslogtreecommitdiff
path: root/src/target
diff options
context:
space:
mode:
Diffstat (limited to 'src/target')
-rw-r--r--src/target/arm920t.c3
-rw-r--r--src/target/target.c8
2 files changed, 11 insertions, 0 deletions
diff --git a/src/target/arm920t.c b/src/target/arm920t.c
index d68ca2e4..54feaff2 100644
--- a/src/target/arm920t.c
+++ b/src/target/arm920t.c
@@ -380,6 +380,9 @@ int arm920t_write_cp15_interpreted(target_t *target, u32 opcode, u32 value, u32
DEBUG("opcode: %8.8x, value: %8.8x, address: %8.8x", opcode, value, address);
+ ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, 0).dirty = 1;
+ ARMV4_5_CORE_REG_MODE(armv4_5->core_cache, armv4_5->core_mode, 1).dirty = 1;
+
return ERROR_OK;
}
diff --git a/src/target/target.c b/src/target/target.c
index e88fb196..2f5126df 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -1663,6 +1663,14 @@ int handle_bp_command(struct command_context_s *cmd_ctx, char *cmd, char **args,
break;
}
}
+ else
+ {
+ command_print(cmd_ctx, "breakpoint added at address 0x%8.8x", strtoul(args[0], NULL, 0));
+ }
+ }
+ else
+ {
+ command_print(cmd_ctx, "usage: bp <address> <length> ['hw']");
}
return ERROR_OK;