- 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
This commit is contained in:
+2
-2
@@ -125,9 +125,9 @@ typedef struct target_type_s
|
||||
/* target break-/watchpoint control
|
||||
* rw: 0 = write, 1 = read, 2 = access
|
||||
*/
|
||||
int (*add_breakpoint)(struct target_s *target, u32 address, u32 length, enum breakpoint_type type);
|
||||
int (*add_breakpoint)(struct target_s *target, breakpoint_t *breakpoint);
|
||||
int (*remove_breakpoint)(struct target_s *target, breakpoint_t *breakpoint);
|
||||
int (*add_watchpoint)(struct target_s *target, u32 address, u32 length, enum watchpoint_rw rw);
|
||||
int (*add_watchpoint)(struct target_s *target, watchpoint_t *watchpoint);
|
||||
int (*remove_watchpoint)(struct target_s *target, watchpoint_t *watchpoint);
|
||||
|
||||
/* target algorithm support */
|
||||
|
||||
Reference in New Issue
Block a user