diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-09-25 18:12:55 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-09-25 18:12:55 -0700 |
commit | 4c795006821a94c1d4823ac4e1d32977587ae819 (patch) | |
tree | 7bd211ffba8a52f6417e300fd651861cd23f3450 /debug.h | |
parent | 153645cdd7fde5e34b8c2e66512abd815c2418a7 (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.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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); |