diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-02-15 22:07:55 -0800 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-02-15 22:07:55 -0800 |
commit | 7b5d8aea9384f484bcb68d31d17ad098d8c5165f (patch) | |
tree | d8a4ce84101857f5f30df418d74e2166afff90ae | |
parent | 12a8fce5f9f2b1815e7042dafd2a4cc999608a93 (diff) |
Dump titlescreen graphics.
-rwxr-xr-x | gfx/tilemaps/titlescreen.map | bin | 0 -> 1024 bytes | |||
-rw-r--r-- | gfx/titlescreen/blank_tiles.png | bin | 0 -> 71 bytes | |||
-rw-r--r-- | gfx/titlescreen/blank_tiles_2.png | bin | 0 -> 74 bytes | |||
-rw-r--r-- | gfx/titlescreen/bouncing_pokeball.png | bin | 0 -> 194 bytes | |||
-rw-r--r-- | gfx/titlescreen/game_start_menu.png | bin | 0 -> 204 bytes | |||
-rw-r--r-- | gfx/titlescreen/pikachu_blinking_eye.png | bin | 0 -> 125 bytes | |||
-rw-r--r-- | gfx/titlescreen/titlescreen.png | bin | 0 -> 1873 bytes | |||
-rwxr-xr-x | main.asm | 26 |
8 files changed, 24 insertions, 2 deletions
diff --git a/gfx/tilemaps/titlescreen.map b/gfx/tilemaps/titlescreen.map Binary files differnew file mode 100755 index 0000000..4431301 --- /dev/null +++ b/gfx/tilemaps/titlescreen.map diff --git a/gfx/titlescreen/blank_tiles.png b/gfx/titlescreen/blank_tiles.png Binary files differnew file mode 100644 index 0000000..887cfb4 --- /dev/null +++ b/gfx/titlescreen/blank_tiles.png diff --git a/gfx/titlescreen/blank_tiles_2.png b/gfx/titlescreen/blank_tiles_2.png Binary files differnew file mode 100644 index 0000000..7613c5a --- /dev/null +++ b/gfx/titlescreen/blank_tiles_2.png diff --git a/gfx/titlescreen/bouncing_pokeball.png b/gfx/titlescreen/bouncing_pokeball.png Binary files differnew file mode 100644 index 0000000..6a04004 --- /dev/null +++ b/gfx/titlescreen/bouncing_pokeball.png diff --git a/gfx/titlescreen/game_start_menu.png b/gfx/titlescreen/game_start_menu.png Binary files differnew file mode 100644 index 0000000..bbae12d --- /dev/null +++ b/gfx/titlescreen/game_start_menu.png diff --git a/gfx/titlescreen/pikachu_blinking_eye.png b/gfx/titlescreen/pikachu_blinking_eye.png Binary files differnew file mode 100644 index 0000000..3177fe1 --- /dev/null +++ b/gfx/titlescreen/pikachu_blinking_eye.png diff --git a/gfx/titlescreen/titlescreen.png b/gfx/titlescreen/titlescreen.png Binary files differnew file mode 100644 index 0000000..76f8e3a --- /dev/null +++ b/gfx/titlescreen/titlescreen.png @@ -2673,7 +2673,24 @@ INCBIN "baserom.gbc",$b0000,$b4000 - $b0000 ; 0xb0000 SECTION "bank2d", ROMX, BANK[$2d] -INCBIN "baserom.gbc",$b4000,$b8000 - $b4000 ; 0xb4000 +INCBIN "baserom.gbc",$b4000,$b4400 - $b4000 ; 0xb4000 + +PikachuBlinkingEyeGfx: ; 0xb4400 + INCBIN "gfx/titlescreen/pikachu_blinking_eye.2bpp" +BouncingPokeballGfx: ; 0xb44460 + INCBIN "gfx/titlescreen/bouncing_pokeball.2bpp" +UnusedTitlescreenGfx: ; 0xb44f0 + INCBIN "gfx/titlescreen/blank_tiles.2bpp" +GameStartMenuGfx: ; 0xb4540 +; Optional dialogue for "NEW GAME" or "CONTINUE" + INCBIN "gfx/titlescreen/game_start_menu.2bpp" + +UnusedTitlescreenGfx2: ; 0xb4680 + INCBIN "gfx/titlescreen/blank_tiles_2.2bpp" +TitlescreenGfx: ; 0xb4800 + INCBIN "gfx/titlescreen/titlescreen.2bpp" + +INCBIN "baserom.gbc",$b5800,$b8000 - $b5800 ; 0xb5800 SECTION "bank2e", ROMX, BANK[$2e] @@ -2693,7 +2710,12 @@ INCBIN "baserom.gbc",$c0000,$c4000 - $c0000 ; 0xc0000 SECTION "bank31", ROMX, BANK[$31] -INCBIN "baserom.gbc",$c4000,$c6000 - $c4000 ; 0xc4000 +INCBIN "baserom.gbc",$c4000,$c5800 - $c4000 ; 0xc4000 + +TitlescreenTilemap: ; 0xc5800 + INCBIN "gfx/tilemaps/titlescreen.map" + +INCBIN "baserom.gbc",$c5c00,$c6000 - $c5c00 ; 0xc4000 CopyrightScreenTilemap: ; 0xc6000 INCBIN "gfx/tilemaps/copyright_screen.map" |