1 /*
2 ** Starscream 680x0 emulation library
3 ** Copyright 1997, 1998, 1999 Neill Corlett
4 **
5 ** Refer to STARDOC.TXT for terms of use, API reference, and directions on
6 ** how to compile.
7 */
8 
9 #ifndef __CPUDEBUG_H__
10 #define __CPUDEBUG_H__
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 int cpudebug_disabled(void);
17 int cpudebug_interactive(
18 	int cpun,
19 	void (*put)(const char*),
20 	void (*get)(char*, int),
21 	void (*execstep)(void),
22 	void (*dump)(void)
23 );
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif
30