vbagx/source/ngc/vmmem.h

27 lines
499 B
C
Raw Normal View History

2008-09-14 20:40:26 +00:00
/****************************************************************************
2008-09-17 02:27:55 +00:00
* Visual Boy Advance GX
*
* Tantric September 2008
*
* vmmem.h
*
* GameBoy Advance Virtual Memory Paging
***************************************************************************/
2008-09-14 20:40:26 +00:00
#ifndef __VBAVMHDR__
#define __VBAVMHDR__
bool VMCPULoadROM(int method);
2008-10-18 19:27:43 +00:00
void VMClose();
#ifdef USE_VM
2008-09-14 20:40:26 +00:00
u32 VMRead32( u32 address );
u16 VMRead16( u32 address );
u8 VMRead8( u32 address );
2008-10-18 19:27:43 +00:00
#endif
2008-09-14 20:40:26 +00:00
2008-10-27 04:31:59 +00:00
extern int GBAROMSize;
2008-09-14 20:40:26 +00:00
#endif