From 992e8493426c1943b464b792f4ef24e9bfa3fff6 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 13 Sep 2020 21:34:17 -0400 Subject: Decompress/extract the title screen --- gfx/title/title.attrmap | Bin 0 -> 1024 bytes gfx/title/title.tilemap | Bin 0 -> 1024 bytes gfx/title/title_1.bin.xor | Bin 0 -> 3657 bytes gfx/title/title_1.png | Bin 0 -> 2376 bytes gfx/title/title_2.bin.xor | Bin 0 -> 314 bytes gfx/title/title_2.png | Bin 0 -> 262 bytes source/bank_66.asm | 5 +++++ source/bank_67.asm | 4 ++++ source/bank_7a.asm | 9 +++++++++ 9 files changed, 18 insertions(+) create mode 100644 gfx/title/title.attrmap create mode 100644 gfx/title/title.tilemap create mode 100644 gfx/title/title_1.bin.xor create mode 100644 gfx/title/title_1.png create mode 100644 gfx/title/title_2.bin.xor create mode 100644 gfx/title/title_2.png create mode 100644 source/bank_67.asm create mode 100644 source/bank_7a.asm diff --git a/gfx/title/title.attrmap b/gfx/title/title.attrmap new file mode 100644 index 0000000..31f9f10 Binary files /dev/null and b/gfx/title/title.attrmap differ diff --git a/gfx/title/title.tilemap b/gfx/title/title.tilemap new file mode 100644 index 0000000..9868de0 Binary files /dev/null and b/gfx/title/title.tilemap differ diff --git a/gfx/title/title_1.bin.xor b/gfx/title/title_1.bin.xor new file mode 100644 index 0000000..411a863 Binary files /dev/null and b/gfx/title/title_1.bin.xor differ diff --git a/gfx/title/title_1.png b/gfx/title/title_1.png new file mode 100644 index 0000000..14f4fbd Binary files /dev/null and b/gfx/title/title_1.png differ diff --git a/gfx/title/title_2.bin.xor b/gfx/title/title_2.bin.xor new file mode 100644 index 0000000..de5e98b Binary files /dev/null and b/gfx/title/title_2.bin.xor differ diff --git a/gfx/title/title_2.png b/gfx/title/title_2.png new file mode 100644 index 0000000..74722e3 Binary files /dev/null and b/gfx/title/title_2.png differ diff --git a/source/bank_66.asm b/source/bank_66.asm index f4b590d..9ad743d 100644 --- a/source/bank_66.asm +++ b/source/bank_66.asm @@ -119,3 +119,8 @@ gfx_bgm_jigglypuff_4:: INCBIN "gfx/bgm/no_blink.bin" INCBIN "gfx/bgm/jigglypuff_4.bin" .end:: + +SECTION "compressed_gfx_title_2", ROMX[$7ebf], BANK[$66] +compressed_gfx_title_2:: +INCBIN "gfx/title/title_2.bin.xor" +.end:: diff --git a/source/bank_67.asm b/source/bank_67.asm new file mode 100644 index 0000000..dbd6622 --- /dev/null +++ b/source/bank_67.asm @@ -0,0 +1,4 @@ +SECTION "compressed_gfx_title_1", ROMX[$7000], BANK[$67] +compressed_gfx_title_1:: +INCBIN "gfx/title/title_1.bin.xor" +.end:: diff --git a/source/bank_7a.asm b/source/bank_7a.asm new file mode 100644 index 0000000..c743f69 --- /dev/null +++ b/source/bank_7a.asm @@ -0,0 +1,9 @@ +SECTION "bank7a", ROMX[$7020], BANK[$7a] + +tilemap_title:: +INCBIN "gfx/title/title.tilemap" +.end:: + +attrmap_title:: +INCBIN "gfx/title/title.attrmap" +.end:: -- cgit v1.2.3