vbagx/source/ngc/vmmem.h

21 lines
442 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__
int VMCPULoadROM( char *filename );
u32 VMRead32( u32 address );
u16 VMRead16( u32 address );
u8 VMRead8( u32 address );
#endif