summaryrefslogtreecommitdiff
path: root/main.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2014-02-04 21:29:13 -0500
committeryenatch <yenatch@gmail.com>2014-02-04 21:30:27 -0500
commit30218eb3d6c0b523a302ac38601b4630c564aeb1 (patch)
tree3f67f455cd500e7a3c1956ee15ed6ffedfaa2edb /main.asm
parent7c02c2bb31317c31446a5907fe68f26dabb4858f (diff)
Use globals to implicitly define labels before passing them into BANK().
Diffstat (limited to 'main.asm')
-rw-r--r--main.asm6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.asm b/main.asm
index d8acd16e8..189ade3fb 100644
--- a/main.asm
+++ b/main.asm
@@ -41638,6 +41638,12 @@ Function44333: ; 44333
; 44351
PokedexEntryBanks: ; 44351
+
+GLOBAL PokedexEntries1
+GLOBAL PokedexEntries2
+GLOBAL PokedexEntries3
+GLOBAL PokedexEntries4
+
db BANK(PokedexEntries1)
db BANK(PokedexEntries2)
db BANK(PokedexEntries3)