mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-09-26 13:32:48 -04:00
15 lines
275 B
NASM
15 lines
275 B
NASM
SECTION "Title screen", ROMX[$5D8C],BANK[1]
|
|
|
|
IntroSequence:: ; 5d8c
|
|
; TODO
|
|
|
|
|
|
SECTION "Title screen TEMPORARY", ROMX[$62A5],BANK[1] ; TODO: merge this with the section above
|
|
|
|
GameInit:: ; 62a5
|
|
call ClearWindowData
|
|
ld a, $23
|
|
ld [wce5f], a
|
|
jp IntroSequence
|
|
|