blob: 9046aef689fd1770a112d1af10f02b9991dc3969 (
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
|
include "constants.asm"
SECTION "maps/UnusedMap13.asm", ROMX
UnusedMap13ScriptLoader:: ; 6078
ld hl, UnusedMap13ScriptPointers
call RunMapScript
call WriteBackMapScriptNumber
ret
UnusedMap13ScriptPointers: ; 6082
dw UnusedMap13Script
dw UnusedMap13NPCIDs
UnusedMap13NPCIDs: ; 6086
db $FF
UnusedMap13SignPointers: ; 6087
dw MapDefaultText
UnusedMap13TextPointers:: ; 6089
dw MapDefaultText
UnusedMap13Script: ; 608B
ld hl, UnusedMap13NPCIDs
ld de, UnusedMap13SignPointers
call CallMapTextSubroutine
ret
|