diff options
| author | yenatch <yenatch@gmail.com> | 2013-11-26 05:23:56 -0500 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2013-11-27 14:45:42 -0500 |
| commit | 41f149c7f13a3b54c8ecc4101258fccc5a5ab184 (patch) | |
| tree | 3f9e3aedfb79b2e6cfd106f9bc8321cbbd811a24 /stats | |
| parent | 04eb541f836218f2c987b63e311ec68ae0510d18 (diff) | |
maps.o and stats/pokedex/entries.o
Diffstat (limited to 'stats')
| -rw-r--r-- | stats/pokedex/entries.asm | 24 | ||||
| -rw-r--r-- | stats/pokedex/entries_crystal.asm | 5 |
2 files changed, 29 insertions, 0 deletions
diff --git a/stats/pokedex/entries.asm b/stats/pokedex/entries.asm new file mode 100644 index 000000000..7cfaa254d --- /dev/null +++ b/stats/pokedex/entries.asm @@ -0,0 +1,24 @@ + +SECTION "Pokedex Entries 001-064", ROMX, BANK[POKEDEX_ENTRIES_1] + +PokedexEntries1: +INCLUDE "stats/pokedex/entries_1.asm" + + +SECTION "Pokedex Entries 065-128", ROMX, BANK[POKEDEX_ENTRIES_2] + +PokedexEntries2: +INCLUDE "stats/pokedex/entries_2.asm" + + +SECTION "Pokedex Entries 129-192", ROMX, BANK[POKEDEX_ENTRIES_3] + +PokedexEntries3: +INCLUDE "stats/pokedex/entries_3.asm" + + +SECTION "Pokedex Entries 193-251", ROMX, BANK[POKEDEX_ENTRIES_4] + +PokedexEntries4: +INCLUDE "stats/pokedex/entries_4.asm" + diff --git a/stats/pokedex/entries_crystal.asm b/stats/pokedex/entries_crystal.asm new file mode 100644 index 000000000..f66d52350 --- /dev/null +++ b/stats/pokedex/entries_crystal.asm @@ -0,0 +1,5 @@ +INCLUDE "pokecrystal.asm" +INCLUDE "includes.asm" + +INCLUDE "stats/pokedex/entries.asm" + |
