diff options
Diffstat (limited to 'src/target/arm9tdmi.c')
-rw-r--r-- | src/target/arm9tdmi.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/target/arm9tdmi.c b/src/target/arm9tdmi.c index 4a4b9a1c..2997ee2e 100644 --- a/src/target/arm9tdmi.c +++ b/src/target/arm9tdmi.c @@ -84,6 +84,7 @@ target_type_t arm9tdmi_target = .register_commands = arm9tdmi_register_commands, .target_command = arm9tdmi_target_command, .init_target = arm9tdmi_init_target, + .examine = arm9tdmi_examine, .quit = arm9tdmi_quit }; @@ -859,6 +860,11 @@ void arm9tdmi_build_reg_cache(target_t *target) } } +int arm9tdmi_examine(struct command_context_s *cmd_ctx, struct target_s *target) +{ + return ERROR_OK; +} + int arm9tdmi_init_target(struct command_context_s *cmd_ctx, struct target_s *target) { |