summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-09-25 18:12:55 -0700
committerMichael Pavone <pavone@retrodev.com>2015-09-25 18:12:55 -0700
commit4c795006821a94c1d4823ac4e1d32977587ae819 (patch)
tree7bd211ffba8a52f6417e300fd651861cd23f3450 /debug.h
parent153645cdd7fde5e34b8c2e66512abd815c2418a7 (diff)
WIP debugger improvements. Partial support for display command in 68K debugger. Minor refactor to support commands on a breakpoint.
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);