diff options
-rw-r--r-- | gfx/title/title.attrmap | bin | 0 -> 1024 bytes | |||
-rw-r--r-- | gfx/title/title.tilemap | bin | 0 -> 1024 bytes | |||
-rw-r--r-- | gfx/title/title_1.bin.xor | bin | 0 -> 3657 bytes | |||
-rw-r--r-- | gfx/title/title_1.png | bin | 0 -> 2376 bytes | |||
-rw-r--r-- | gfx/title/title_2.bin.xor | bin | 0 -> 314 bytes | |||
-rw-r--r-- | gfx/title/title_2.png | bin | 0 -> 262 bytes | |||
-rw-r--r-- | source/bank_66.asm | 5 | ||||
-rw-r--r-- | source/bank_67.asm | 4 | ||||
-rw-r--r-- | source/bank_7a.asm | 9 |
9 files changed, 18 insertions, 0 deletions
diff --git a/gfx/title/title.attrmap b/gfx/title/title.attrmap Binary files differnew file mode 100644 index 0000000..31f9f10 --- /dev/null +++ b/gfx/title/title.attrmap diff --git a/gfx/title/title.tilemap b/gfx/title/title.tilemap Binary files differnew file mode 100644 index 0000000..9868de0 --- /dev/null +++ b/gfx/title/title.tilemap diff --git a/gfx/title/title_1.bin.xor b/gfx/title/title_1.bin.xor Binary files differnew file mode 100644 index 0000000..411a863 --- /dev/null +++ b/gfx/title/title_1.bin.xor diff --git a/gfx/title/title_1.png b/gfx/title/title_1.png Binary files differnew file mode 100644 index 0000000..14f4fbd --- /dev/null +++ b/gfx/title/title_1.png diff --git a/gfx/title/title_2.bin.xor b/gfx/title/title_2.bin.xor Binary files differnew file mode 100644 index 0000000..de5e98b --- /dev/null +++ b/gfx/title/title_2.bin.xor diff --git a/gfx/title/title_2.png b/gfx/title/title_2.png Binary files differnew file mode 100644 index 0000000..74722e3 --- /dev/null +++ b/gfx/title/title_2.png 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:: |