Add support for 8 MiB ROMs, the largest size possible with MBC5.

This commit is contained in:
Anthony J. Bentley
2012-12-26 21:41:47 -07:00
parent b90406861d
commit 6579743410
4 changed files with 11 additions and 11 deletions

View File

@@ -5,11 +5,11 @@
enum eBankDefine {
BANK_HOME = 0,
BANK_BSS = 256,
BANK_BSS = 512,
BANK_VRAM,
BANK_HRAM
};
#define MAXBANKS 259
#define MAXBANKS 515
extern SLONG area_Avail(SLONG bank);
extern void AssignSections(void);