vbagx/source/ngc/vmmem.h
2009-10-01 22:42:02 +00:00

27 lines
489 B
C

/****************************************************************************
* Visual Boy Advance GX
*
* Tantric September 2008
*
* vmmem.h
*
* GameBoy Advance Virtual Memory Paging
***************************************************************************/
#ifndef __VBAVMHDR__
#define __VBAVMHDR__
bool VMCPULoadROM();
void VMClose();
#ifdef USE_VM
u32 VMRead32( u32 address );
u16 VMRead16( u32 address );
u8 VMRead8( u32 address );
#endif
extern int GBAROMSize;
#endif