forked from KolibriOS/kolibrios
ea1a60faa3
git-svn-id: svn://kolibrios.org@9837 a494cfbc-eb01-0410-851d-a64ba20cac60
30 lines
477 B
C
30 lines
477 B
C
/*
|
|
** Starscream 680x0 emulation library
|
|
** Copyright 1997, 1998, 1999 Neill Corlett
|
|
**
|
|
** Refer to STARDOC.TXT for terms of use, API reference, and directions on
|
|
** how to compile.
|
|
*/
|
|
|
|
#ifndef __CPUDEBUG_H__
|
|
#define __CPUDEBUG_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int cpudebug_disabled(void);
|
|
int cpudebug_interactive(
|
|
int cpun,
|
|
void (*put)(const char*),
|
|
void (*get)(char*, int),
|
|
void (*execstep)(void),
|
|
void (*dump)(void)
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|