diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-08 22:25:54 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-08 22:25:54 -0400 |
commit | f0081698d0928c0f62fab2f6c9490fccc05f997c (patch) | |
tree | 93f366bc24064d1ecee3da1af6fd118c4ea3049e /source | |
parent | ddb9dd0e5440ab51613ef9e70289a1627a45cf8c (diff) |
Extract some more graphic data
Diffstat (limited to 'source')
-rw-r--r-- | source/bank_63.asm | 4 | ||||
-rw-r--r-- | source/bank_68.asm | 5 | ||||
-rw-r--r-- | source/bank_71.asm | 5 |
3 files changed, 14 insertions, 0 deletions
diff --git a/source/bank_63.asm b/source/bank_63.asm new file mode 100644 index 0000000..5bab581 --- /dev/null +++ b/source/bank_63.asm @@ -0,0 +1,4 @@ +SECTION "gfx_itemdex", ROMX[$4000], BANK[$63] +gfx_itemdex:: +INCBIN "gfx/itemdex/itemdex.2bpp" +.end:: diff --git a/source/bank_68.asm b/source/bank_68.asm index 991ccbe..2f5ecd5 100644 --- a/source/bank_68.asm +++ b/source/bank_68.asm @@ -119,3 +119,8 @@ gfx_bgm_jigglypuff_4_sgb:: INCBIN "gfx/bgm/no_blink.2bpp" INCBIN "gfx/bgm/jigglypuff_4_sgb.2bpp" .end:: + +SECTION "compressed_tilemap_attrmap_town_map_transition", ROMX[$7000], BANK[$68] +compressed_tilemap_attrmap_town_map_transition:: +INCBIN "gfx/town_map/town_map_transition.tilemap_attrmap.xor" +.end:: diff --git a/source/bank_71.asm b/source/bank_71.asm index 955fd26..2d5dcbc 100644 --- a/source/bank_71.asm +++ b/source/bank_71.asm @@ -8,3 +8,8 @@ INCBIN "gfx/safari_map/lv_3_mountain_zone_sgb.2bpp" gfx_lv_3_mountain_zone_duplicate:: INCBIN "gfx/safari_map/lv_3_mountain_zone.2bpp" .end:: + +SECTION "compressed_tilemap_attrmap_itemdex", ROMX[$7c00], BANK[$71] +compressed_tilemap_attrmap_itemdex:: +INCBIN "gfx/itemdex/itemdex.tilemap_attrmap.xor" +.end:: |