mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-12-17 08:11:29 +13:00
VRAM constants.
This commit is contained in:
parent
619a4ea8a1
commit
229507e3f3
|
|
@ -3,6 +3,7 @@ INCLUDE "version.asm"
|
||||||
INCLUDE "macros.asm"
|
INCLUDE "macros.asm"
|
||||||
|
|
||||||
INCLUDE "hram.asm"
|
INCLUDE "hram.asm"
|
||||||
|
INCLUDE "vram.asm"
|
||||||
|
|
||||||
INCLUDE "constants/hardware_constants.asm"
|
INCLUDE "constants/hardware_constants.asm"
|
||||||
INCLUDE "constants/oam_constants.asm"
|
INCLUDE "constants/oam_constants.asm"
|
||||||
|
|
|
||||||
21
vram.asm
Normal file
21
vram.asm
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
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
|
||||||
|
|
||||||
Loading…
Reference in a new issue