blob: 2ddaa44d2a310791d7911400a9a3377272b1feb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
INCLUDE "constants.asm"
SECTION "Title screen", ROMX[$5D8C], BANK[$01]
IntroSequence:: ; 5d8c
; TODO
SECTION "Title screen TEMPORARY", ROMX[$62A5],BANK[1] ; TODO: merge this with the main section above
GameInit:: ; 62a5
call ClearWindowData
ld a, $23
ld [wce5f], a
jp IntroSequence
|