Make Main RAM size configurable in a single place.

This commit is contained in:
Dario Nieuwenhuis
2018-05-24 00:58:36 +02:00
parent 20050fb668
commit cb79a5dc14
2 changed files with 17 additions and 15 deletions

View File

@ -101,7 +101,9 @@ extern u8 ROMSeed1[2*8];
extern u8 ARM9BIOS[0x1000];
extern u8 ARM7BIOS[0x4000];
extern u8 MainRAM[0x400000];
#define MAIN_RAM_SIZE 0x400000
extern u8 MainRAM[MAIN_RAM_SIZE];
bool Init();
void DeInit();