diff options
author | YamaArashi <shadow962@live.com> | 2016-08-26 18:09:36 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-08-26 18:09:36 -0700 |
commit | 626702b86ed0cf731a4987c8e4e62dc69c0e80d0 (patch) | |
tree | 040dbe0d2f1a33ed8e26ec4370ed2c5a7175e1a7 /constants | |
parent | 5b2551e915e388c18614e21cefb168bda6e85051 (diff) |
misc. incbins
Diffstat (limited to 'constants')
-rw-r--r-- | constants/gba_constants.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/constants/gba_constants.s b/constants/gba_constants.s index accd16007..412858935 100644 --- a/constants/gba_constants.s +++ b/constants/gba_constants.s @@ -15,6 +15,17 @@ .set IWRAM_START, 0x03000000 .set IWRAM_END, IWRAM_START + 0x8000 + .set PLTT, 0x5000000 + .set BG_PLTT, PLTT + .set OBJ_PLTT, PLTT + 0x200 + + .set VRAM, 0x6000000 + .set BG_VRAM, VRAM + .set OBJ_VRAM0, VRAM + 0x10000 @ text-mode BG + .set OBJ_VRAM1, VRAM + 0x14000 @ bitmap-mode BG + + .set OAM, 0x7000000 + .set SOUND_INFO_PTR, IWRAM_END - 0x10 .set INTR_VECTOR, IWRAM_END - 0x4 |