File:  [RetroPC.NET] / xmil / z80c / z80mem.h
Revision 1.3: download - view: text, annotated - select for diffs
Sun Aug 8 23:00:56 2004 JST (21 years, 2 months ago) by yui
Branches: MAIN
CVS tags: HEAD
fix...


#ifndef MEMCALL
#define	MEMCALL
#endif


#ifdef __cplusplus
extern "C" {
#endif

REG8 MEMCALL mem_read8(UINT addr);
REG16 MEMCALL mem_read16(UINT addr);
void MEMCALL mem_write8(UINT addr, REG8 value);
void MEMCALL mem_write16(UINT addr, REG16 value);
SINT MEMCALL mem_read8s(UINT addr);

// REG8 MEMCALL Z80_RDMEM(REG16 addr);
// void MEMCALL Z80_WRMEM(REG16 addr, REG8 value);

#ifdef __cplusplus
}
#endif


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