diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-09-14 11:48:41 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-09-14 11:48:41 -0400 |
commit | c394f413562df274c89538d30b9a6dffc3c59870 (patch) | |
tree | 7a77705a944307dbcaf6ffadac3c21166cbbdd1e /source/bank_7a.asm | |
parent | bf4545e9c2146769705a85a3a05706f756907456 (diff) |
Decompress Pokédex tilemaps/attrmaps
Diffstat (limited to 'source/bank_7a.asm')
-rw-r--r-- | source/bank_7a.asm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source/bank_7a.asm b/source/bank_7a.asm index 09e13b8..c16f228 100644 --- a/source/bank_7a.asm +++ b/source/bank_7a.asm @@ -1,13 +1,16 @@ SECTION "bank7a", ROMX[$7020], BANK[$7a] - tilemap_title:: INCBIN "gfx/title/title.tilemap" .end:: - attrmap_title:: INCBIN "gfx/title/title.attrmap" .end:: +SECTION "compressed_tilemap_attrmap_pokedex_list", ROMX[$7820], BANK[$7a] +compressed_tilemap_attrmap_pokedex_list:: +INCBIN "gfx/pokedex/pokedex_list.tilemap_attrmap.xor" +.end:: + SECTION "compressed_tilemap_attrmap_pokemon_picross", ROMX[$7d18], BANK[$7a] compressed_tilemap_attrmap_pokemon_picross:: INCBIN "gfx/game_select/pokemon_picross.tilemap_attrmap.xor" |