I've been wanting to make a game for the GBA for a while now, where do I start? I'm wanting to make a platformer with some basic dialog system.
I'm mostly just a newb but cross referencing Devkitpro's files and this handy tutorial here really helped me get started.I've been wanting to make a game for the GBA for a while now, where do I start? I'm wanting to make a platformer with some basic dialog system.
#define CARTRAM 0x0E000000 // SRAM memory Adress.
#define SaveData ((u8*) CARTRAM) //Treats the CARTRAM adress like it's an array,
char someVariable;
void SaveFunction(){
SaveData[0] = 'T';
}
void LoadFunction(){
someVariable = SaveData[0] ;
}