summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/debug.h b/debug.h
index 1b61efd..f0f7644 100644
--- a/debug.h
+++ b/debug.h
@@ -12,9 +12,10 @@ typedef struct disp_def {
} disp_def;
typedef struct bp_def {
- struct bp_def * next;
- uint32_t address;
- uint32_t index;
+ struct bp_def *next;
+ char *commands;
+ uint32_t address;
+ uint32_t index;
} bp_def;
bp_def ** find_breakpoint(bp_def ** cur, uint32_t address);