diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-08 13:46:45 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-06-08 13:46:45 -0400 |
commit | fbec7338228ec798bcd793db5d261fdb5e953ddc (patch) | |
tree | f0df8f13a0b7dc345fec8e4f3e007a40ccbbc9ca /vram.asm | |
parent | b54195200748c54238ac88a06a85e8cd5517438e (diff) | |
parent | 03279f38fc11f05ac925229102ddaf6433acfa88 (diff) |
Merge branch 'master' into math_etc
Diffstat (limited to 'vram.asm')
-rw-r--r-- | vram.asm | 78 |
1 files changed, 58 insertions, 20 deletions
@@ -1,21 +1,59 @@ -vChars0 EQU $8000 -vChars1 EQU $8800 -vChars2 EQU $9000 -vBGMap0 EQU $9800 -vBGMap1 EQU $9c00 - -; Battle/Menu -vSprites EQU vChars0 -vFont EQU vChars1 -vFrontPic EQU vChars2 -vBackPic EQU vFrontPic + 7 * 7 * $10 - -; Overworld -vNPCSprites EQU vChars0 -vNPCSprites2 EQU vChars1 -vTileset EQU vChars2 - -; Title -vTitleLogo EQU vChars1 -vTitleLogo2 EQU vFrontPic + 7 * 7 * $10 +INCLUDE "constants.asm" +SECTION "VRAM", VRAM[$8000],BANK[0] ; Get around a RGBLINK bug. Remove this when it doesn't yield an error about fixing the section + +UNION + +vChars0:: ; 8000 + ds $80 tiles + +vChars1:: ; 8800 + ds $80 tiles + +vChars2:: ; 9000 + ds $80 tiles + +NEXTU + +; Battle/menu +vSprites:: ; 8000 + ds $80 tiles + +vFont:: ; 8800 + ds $80 tiles + +vFrontPic:: ; 9000 + ds 7 * 7 tiles + +NEXTU + +vNPCSprites:: ; 8000 + ds $80 tiles + +vNPCSprites2:: ; 8800 + ds $80 tiles + +vTileset:: ; 9000 + ds $80 tiles + +NEXTU + + ds $80 tiles + +vTitleLogo:: ; 8800 + ds $80 tiles + +;vFrontPic:: ; 9000 + ds 7 * 7 tiles + +vTitleLogo2:: ; 9310 + ; TODO: what size? + +ENDU + + +vBGMap0:: ; 9800 + ds BG_MAP_WIDTH * BG_MAP_HEIGHT + +vBGMap1:: ; 9c00 + ds BG_MAP_WIDTH * BG_MAP_HEIGHT
\ No newline at end of file |