diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-09-11 18:55:32 -0400 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2020-09-12 11:21:09 +0200 |
commit | 56099725726805d1e25e1a3b95d2d6072cc6534c (patch) | |
tree | 507a5704ff1d63a9595cd42be78be3c20631f94f /source/bank_6f.asm | |
parent | df089c929def157b6f9a9a8beb165a2aaadb3e28 (diff) |
Extract graphics from bank $6E and $6F
Diffstat (limited to 'source/bank_6f.asm')
-rw-r--r-- | source/bank_6f.asm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/source/bank_6f.asm b/source/bank_6f.asm index d72f8d7..d4d908b 100644 --- a/source/bank_6f.asm +++ b/source/bank_6f.asm @@ -1,4 +1,17 @@ -SECTION "gfx_text_chars", ROMX[$4000], BANK[$6f] +SECTION "bank6f", ROMX[$4000], BANK[$6f] + gfx_text_chars:: INCBIN "gfx/text_chars.bin" .end:: + +gfx_lv_2_mt_otsukimi:: +INCBIN "gfx/lv_2_mt_otsukimi.bin" +.end:: + +gfx_lv_2_mt_otsukimi_sgb:: +INCBIN "gfx/lv_2_mt_otsukimi_sgb.bin" +.end:: + +gfx_lv_2_mt_otsukimi_duplicate:: +INCBIN "gfx/lv_2_mt_otsukimi.bin" +.end:: |