diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2016-08-27 21:43:34 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2016-08-27 21:43:34 -0400 |
commit | 67a057d573b9c9e716f5afae5c6049f86836adbe (patch) | |
tree | 8cad114d5fa558000dcc38b412d917ffd4cf2f93 /constants/gba_constants.s | |
parent | ed4907a014e1cf3ee3d085f8660d483a85cc577d (diff) | |
parent | 382f99c35ee2e8b81847a18797815a2336971e30 (diff) |
Merge branch 'master' of github.com:twitchplayspokemon/pokeruby
Diffstat (limited to 'constants/gba_constants.s')
-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 |