summaryrefslogtreecommitdiff
path: root/vram.asm
blob: 3ebac0fc7d2d3dfbf75706c5ff21d904adf5535a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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 $60 tiles
	ds $20 tiles

vExteriorTileset:: ; 9200
	ds $40 tiles
vTilesetEnd:: ; 9600

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