-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBG.event
86 lines (79 loc) · 2.75 KB
/
BG.event
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Repoint bgTable.
PUSH
ORG 0xE894
POIN bgTable
ORG 0xECF4
POIN bgTable
ORG 0xEDF8
POIN bgTable
ORG 0x10E44
POIN bgTable
POP
// First 0x36 entries are from the vanilla BGTable
ALIGN 4; bgTable:
WORD 0x088D2700 0x088D5D24 0x088D61D8
WORD 0x088D62D8 0x088D9FF4 0x088DA4A8
WORD 0x088DA5A8 0x088DD8F4 0x088DDDA8
WORD 0x088DDEA8 0x088E0E20 0x088E12D4
WORD 0x088DDEA8 0x088E0E20 0x088E13D4
WORD 0x088E14D4 0x088E5340 0x088E57F4
WORD 0x088E14D4 0x088E5340 0x088E58F4
WORD 0x088E59F4 0x088E81AC 0x088E8660
WORD 0x088E8760 0x088EB6C8 0x088EBB7C
WORD 0x088EBC7C 0x088EE960 0x088EEE14
WORD 0x088EEF14 0x088F0B58 0x088F100C
WORD 0x088EEF14 0x088F0B58 0x088F110C
WORD 0x088F120C 0x088F5AF4 0x088F5FA8
WORD 0x088F120C 0x088F5AF4 0x088F60A8
WORD 0x088F61A8 0x088F9598 0x088F9A4C
WORD 0x088F61A8 0x088F9598 0x088F9B4C
WORD 0x088F9C4C 0x088FB350 0x088FB804
WORD 0x088F9C4C 0x088FB350 0x088FB904
WORD 0x088FBA04 0x088FD424 0x088FD8D8
WORD 0x088FD9D8 0x089018A0 0x08901D54
WORD 0x088FD9D8 0x089018A0 0x08901E54
WORD 0x08901F54 0x08904DEC 0x089052A0
WORD 0x08901F54 0x08904DEC 0x089053A0
WORD 0x089054A0 0x0890792C 0x08907DE0
WORD 0x08907EE0 0x08909C64 0x0890A118
WORD 0x08907EE0 0x08909C64 0x0890A218
WORD 0x08907EE0 0x08909C64 0x0890A318
WORD 0x0890A418 0x0890C7D4 0x0890CC88
WORD 0x0890CD88 0x0890E7E8 0x0890EC9C
WORD 0x0890ED9C 0x08912060 0x08912514
WORD 0x0890ED9C 0x08912060 0x08912614
WORD 0x0890ED9C 0x08912060 0x08912714
WORD 0x0890ED9C 0x08912060 0x08912814
WORD 0x08912914 0x08914CB8 0x0891516C
WORD 0x0891526C 0x089195BC 0x08919A70
WORD 0x08919B70 0x0891E9D4 0x0891EE88
WORD 0x0891EF88 0x08922974 0x08922E28
WORD 0x08922F28 0x089260E8 0x0892659C
WORD 0x0892669C 0x08929210 0x089296C4
WORD 0x0892669C 0x08929210 0x089297C4
WORD 0x089298C4 0x0892D5E4 0x0892DA98
WORD 0x0892DB98 0x0893226C 0x08932720
WORD 0x08932820 0x08937134 0x089375E8
WORD 0x089376E8 0x0893C47C 0x0893C930
WORD 0x0893CA30 0x0893F1D4 0x0893F688
WORD 0x0893CA30 0x0893F1D4 0x0893F788
WORD 0x0893F888 0x08942B38 0x08942FEC
WORD 0x089430EC 0x08947398 0x0894784C
WORD 0x0894794C 0x08949F70 0x0894A424
WORD 0x0894A524 0x0894EEF8 0x0894F3AC
WORD 0x0894F4AC 0x08953538 0x089539EC
WORD 0x08953AEC 0x089584A4 0x08958958
WORD 0x08958A58 0x0895D1A8 0x0895D65C
WORD 0x0895D75C 0x0895D768 0x0895DC1C
WORD 0x0 0x0 0x0 // Not sure what this is used for.
WORD 0x0 0x0 0x0 // ID used for random BG.
POIN Sommie256BG; WORD 0x0; POIN Sommie256Pal // TSA == 0 indicates 256-colour BGs.
POIN Sommie224BG; WORD 0x1; POIN Sommie224Pal // TSA == 1 indicates 224-colour BGs.
ALIGN 4; Sommie256BG:
#incbin "256Sommie.dmp"
ALIGN 4; Sommie256Pal:
#incbin "256SommiePal.dmp"
ALIGN 4; Sommie224BG:
#incbin "224Sommie.dmp"
ALIGN 4; Sommie224Pal:
#incbin "224SommiePal.dmp"