diff debug.h @ 829:cc05444a4a4e

WIP debugger improvements. Partial support for display command in 68K debugger. Minor refactor to support commands on a breakpoint.
author Michael Pavone <pavone@retrodev.com>
date Fri, 25 Sep 2015 18:12:55 -0700
parents 9b7fcf748be0
children 6b5c92b6205c
line wrap: on
line diff
--- a/debug.h	Fri Sep 18 19:54:02 2015 -0700
+++ b/debug.h	Fri Sep 25 18:12:55 2015 -0700
@@ -12,9 +12,10 @@
 } 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);