pokeyellow/engine/predefs17.asm
dannye 2bb64d11e6 Clean up main.asm
recreated deleted file that never should have been unused
2016-06-06 11:04:20 -05:00

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