File:  [RetroPC.NET] / np2 / sound / s98.h
Revision 1.4: download - view: text, annotated - select for diffs
Fri Jan 30 10:56:01 2004 JST (21 years, 9 months ago) by yui
Branches: MAIN
CVS tags: VER_0_80, VER_0_79, VER_0_78, VER_0_77, VER_0_76, VER_0_75, VER_0_74, HEAD
fix defines (T.Yui)


enum {
	NORMAL2608	= 0,
	EXTEND2608	= 1
};


#ifdef __cplusplus
extern "C" {
#endif

#if !defined(SUPPORT_S98)		// コールすら面倒だ!

#define	S98_init()
#define	S98_trash()
#define	S98_open(f)			(FAILURE)
#define	S98_close()
#define	S98_put(m, a, d)
#define S98_sync()

#else

void S98_init(void);
void S98_trash(void);
BOOL S98_open(const char *filename);
void S98_close(void);
void S98_put(REG8 module, REG8 addr, REG8 data);
void S98_sync(void);

#endif

#ifdef __cplusplus
}
#endif


RetroPC.NET-CVS <cvs@retropc.net>