Implement VRAM banks.

This commit is contained in:
Anthony J. Bentley
2013-05-20 00:59:15 -06:00
parent 6ccd386587
commit 35448887af
3 changed files with 182 additions and 25 deletions

View File

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