aboutsummaryrefslogtreecommitdiffstats
path: root/engine/predefs17.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-07-12 09:02:49 -0400
committeryenatch <yenatch@gmail.com>2014-07-12 09:02:49 -0400
commitfb11ff7e55be56cef9234c8443614f04f2157a1e (patch)
treea6aa8d0745bd07d0b80090491b5e4b6652de4420 /engine/predefs17.asm
parentPull a lot of engine out of main.asm (diff)
parentUpdate INSTALL.md (diff)
downloadpokeyellow-fb11ff7e55be56cef9234c8443614f04f2157a1e.tar.gz
pokeyellow-fb11ff7e55be56cef9234c8443614f04f2157a1e.tar.xz
pokeyellow-fb11ff7e55be56cef9234c8443614f04f2157a1e.zip
Merge pull request #48 from yenatch/master
Clean up post-split main.asm. Get rid of static wram addresses. Lay out a foundation for Yellow.
Diffstat (limited to 'engine/predefs17.asm')
-rwxr-xr-xengine/predefs17.asm9
1 files changed, 4 insertions, 5 deletions
diff --git a/engine/predefs17.asm b/engine/predefs17.asm
index d261804a..74977ee8 100755
--- a/engine/predefs17.asm
+++ b/engine/predefs17.asm
@@ -1,10 +1,9 @@
; this function temporarily makes the starters (and Ivysaur) seen
; so that the full Pokedex information gets displayed in Oak's lab
-DisplayStarterMonDex: ; 5c0dc (17:40dc)
+StarterDex: ; 5c0dc (17:40dc)
ld a, %01001011 ; set starter flags
- ld [wPokedexOwned], a ; $d2f7
- ld a, $3d
- call Predef ; indirect jump to ShowPokedexData (402d1 (10:42d1))
+ ld [wPokedexOwned], a ; wPokedexOwned
+ predef ShowPokedexData
xor a ; unset starter flags
- ld [wPokedexOwned], a ; $d2f7
+ ld [wPokedexOwned], a ; wPokedexOwned
ret