File:  [RetroPC.NET] / xmil / io / memio.h
Revision 1.2: download - view: text, annotated - select for diffs
Mon Aug 9 02:45:52 2004 JST (21 years, 2 months ago) by yui
Branches: MAIN
CVS tags: HEAD
fix...


typedef struct {
	UINT8	ram;
#if defined(SUPPORT_EMS)
	UINT8	ems;
#endif
} MEMIO;


#ifdef __cplusplus
extern "C" {
#endif

void memio_update(void);

#if defined(SUPPORT_EMS)
void IOOUTCALL memio_ems_o(UINT port, REG8 dat);
REG8 IOINPCALL memio_ems_i(UINT port);
#endif

void IOOUTCALL memio_rom(UINT port, REG8 dat);
void IOOUTCALL memio_ram(UINT port, REG8 dat);

void memio_reset(void);

#ifdef __cplusplus
}
#endif


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