Import Upstream version 1.23
[debian-dgen.git] / star / cpudebug.h
blobcdfc88fb79f3475ea9429a83224e93d97334ba50
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 */
9 #ifndef __CPUDEBUG_H__
10 #define __CPUDEBUG_H__
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
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)
25 #ifdef __cplusplus
27 #endif
29 #endif