summaryrefslogtreecommitdiff
path: root/plugins/uade2/uade-2.13/src/include/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uade2/uade-2.13/src/include/debug.h')
-rw-r--r--plugins/uade2/uade-2.13/src/include/debug.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/plugins/uade2/uade-2.13/src/include/debug.h b/plugins/uade2/uade-2.13/src/include/debug.h
deleted file mode 100644
index 8ca10ab5..00000000
--- a/plugins/uade2/uade-2.13/src/include/debug.h
+++ /dev/null
@@ -1,25 +0,0 @@
- /*
- * UAE - The Un*x Amiga Emulator
- *
- * Debugger
- *
- * (c) 1995 Bernd Schmidt
- *
- */
-
-#define MAX_HIST 10000
-
-extern int firsthist;
-extern int lasthist;
-extern int debugging;
-extern int debug_interrupt_happened;
-
-#ifdef NEED_TO_DEBUG_BADLY
-extern struct regstruct history[MAX_HIST];
-extern union flagu historyf[MAX_HIST];
-#else
-extern uaecptr history[MAX_HIST];
-#endif
-
-extern void debug(void);
-extern void activate_debugger(void);