From 4c795006821a94c1d4823ac4e1d32977587ae819 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Fri, 25 Sep 2015 18:12:55 -0700 Subject: WIP debugger improvements. Partial support for display command in 68K debugger. Minor refactor to support commands on a breakpoint. --- debug.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'debug.h') 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); -- cgit v1.2.3