mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
21 lines
588 B
C
21 lines
588 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* vbasupport.h
|
|
*
|
|
* VBA support code
|
|
***************************************************************************/
|
|
|
|
#include "System.h"
|
|
|
|
extern struct EmulatedSystem emulator;
|
|
extern u32 loadtimeradjust;
|
|
int loadVBAROM(char filename[]);
|
|
void InitialisePalette();
|
|
bool LoadBattery(int method, bool silent);
|
|
bool SaveBattery(int method, bool silent);
|
|
bool LoadState(int method, bool silent);
|
|
bool SaveState(int method, bool silent);
|