mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
16 lines
396 B
C
16 lines
396 B
C
/****************************************************************************
|
|
* VisualBoyAdvance 1.7.2
|
|
*
|
|
* GameBoy Advance Virtual Memory Paging
|
|
****************************************************************************/
|
|
#ifndef __VBAVMHDR__
|
|
#define __VBAVMHDR__
|
|
|
|
int VMCPULoadROM( char *filename );
|
|
u32 VMRead32( u32 address );
|
|
u16 VMRead16( u32 address );
|
|
u8 VMRead8( u32 address );
|
|
|
|
#endif
|
|
|