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