kolibrios/programs/emulator/dgen-sdl-1.33/star/cpudebug.h
turbocat ea1a60faa3 Upload DGEN port source
git-svn-id: svn://kolibrios.org@9837 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-06-15 18:25:17 +00:00

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