mirror of
https://github.com/pret/pokeyellow.git
synced 2026-05-09 12:22:04 -05:00
rename functions, clean up address/wram comments, other misc only broken up so that all changes are viewable on github
10 lines
304 B
NASM
Executable File
10 lines
304 B
NASM
Executable File
; this function temporarily makes the starters (and Ivysaur) seen
|
|
; so that the full Pokedex information gets displayed in Oak's lab
|
|
StarterDex: ; 5c0dc (17:40dc)
|
|
ld a, %01001011 ; set starter flags
|
|
ld [wPokedexOwned], a
|
|
predef ShowPokedexData
|
|
xor a ; unset starter flags
|
|
ld [wPokedexOwned], a
|
|
ret
|