summaryrefslogtreecommitdiff
path: root/src/target/arm7_9_common.h
diff options
context:
space:
mode:
authordrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-11-07 10:54:19 +0000
committerdrath <drath@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2006-11-07 10:54:19 +0000
commit03e8f264f4c66baec9b86778d3488b23e0a8c0b6 (patch)
treec7fb8e62c0461f3832519ed30b72782e251b9b49 /src/target/arm7_9_common.h
parent83440065c00cce9d36f23182b439d7bf2306cfb2 (diff)
downloadopenocd_libswd-03e8f264f4c66baec9b86778d3488b23e0a8c0b6.tar.gz
openocd_libswd-03e8f264f4c66baec9b86778d3488b23e0a8c0b6.tar.bz2
openocd_libswd-03e8f264f4c66baec9b86778d3488b23e0a8c0b6.tar.xz
openocd_libswd-03e8f264f4c66baec9b86778d3488b23e0a8c0b6.zip
- added support for the oocd-link (http://www.joernonline.de/dw/doku.php?id=en:projects:oocdlink)
- fixed breakpoint handling (this changes the target_t interface) git-svn-id: svn://svn.berlios.de/openocd/trunk@113 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/arm7_9_common.h')
-rw-r--r--src/target/arm7_9_common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/arm7_9_common.h b/src/target/arm7_9_common.h
index 08468907..fc90c059 100644
--- a/src/target/arm7_9_common.h
+++ b/src/target/arm7_9_common.h
@@ -114,9 +114,9 @@ int arm7_9_bulk_write_memory(target_t *target, u32 address, u32 count, u8 *buffe
int arm7_9_run_algorithm(struct target_s *target, int num_mem_params, mem_param_t *mem_params, int num_reg_prams, reg_param_t *reg_param, u32 entry_point, void *arch_info);
-int arm7_9_add_breakpoint(struct target_s *target, u32 address, u32 length, enum breakpoint_type type);
+int arm7_9_add_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
int arm7_9_remove_breakpoint(struct target_s *target, breakpoint_t *breakpoint);
-int arm7_9_add_watchpoint(struct target_s *target, u32 address, u32 length, enum watchpoint_rw rw);
+int arm7_9_add_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
int arm7_9_remove_watchpoint(struct target_s *target, watchpoint_t *watchpoint);
void arm7_9_enable_eice_step(target_t *target);