vbagx/source/ngc/vmmem.h

21 lines
437 B
C
Raw Normal View History

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__
bool VMCPULoadROM(int method);
2008-09-14 22:40:26 +02:00
u32 VMRead32( u32 address );
u16 VMRead16( u32 address );
u8 VMRead8( u32 address );
#endif