summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2015-02-15 22:07:55 -0800
committerMarcus Huderle <huderlem@gmail.com>2015-02-15 22:07:55 -0800
commit7b5d8aea9384f484bcb68d31d17ad098d8c5165f (patch)
treed8a4ce84101857f5f30df418d74e2166afff90ae
parent12a8fce5f9f2b1815e7042dafd2a4cc999608a93 (diff)
Dump titlescreen graphics.
-rwxr-xr-xgfx/tilemaps/titlescreen.mapbin0 -> 1024 bytes
-rw-r--r--gfx/titlescreen/blank_tiles.pngbin0 -> 71 bytes
-rw-r--r--gfx/titlescreen/blank_tiles_2.pngbin0 -> 74 bytes
-rw-r--r--gfx/titlescreen/bouncing_pokeball.pngbin0 -> 194 bytes
-rw-r--r--gfx/titlescreen/game_start_menu.pngbin0 -> 204 bytes
-rw-r--r--gfx/titlescreen/pikachu_blinking_eye.pngbin0 -> 125 bytes
-rw-r--r--gfx/titlescreen/titlescreen.pngbin0 -> 1873 bytes
-rwxr-xr-xmain.asm26
8 files changed, 24 insertions, 2 deletions
diff --git a/gfx/tilemaps/titlescreen.map b/gfx/tilemaps/titlescreen.map
new file mode 100755
index 0000000..4431301
--- /dev/null
+++ b/gfx/tilemaps/titlescreen.map
Binary files differ
diff --git a/gfx/titlescreen/blank_tiles.png b/gfx/titlescreen/blank_tiles.png
new file mode 100644
index 0000000..887cfb4
--- /dev/null
+++ b/gfx/titlescreen/blank_tiles.png
Binary files differ
diff --git a/gfx/titlescreen/blank_tiles_2.png b/gfx/titlescreen/blank_tiles_2.png
new file mode 100644
index 0000000..7613c5a
--- /dev/null
+++ b/gfx/titlescreen/blank_tiles_2.png
Binary files differ
diff --git a/gfx/titlescreen/bouncing_pokeball.png b/gfx/titlescreen/bouncing_pokeball.png
new file mode 100644
index 0000000..6a04004
--- /dev/null
+++ b/gfx/titlescreen/bouncing_pokeball.png
Binary files differ
diff --git a/gfx/titlescreen/game_start_menu.png b/gfx/titlescreen/game_start_menu.png
new file mode 100644
index 0000000..bbae12d
--- /dev/null
+++ b/gfx/titlescreen/game_start_menu.png
Binary files differ
diff --git a/gfx/titlescreen/pikachu_blinking_eye.png b/gfx/titlescreen/pikachu_blinking_eye.png
new file mode 100644
index 0000000..3177fe1
--- /dev/null
+++ b/gfx/titlescreen/pikachu_blinking_eye.png
Binary files differ
diff --git a/gfx/titlescreen/titlescreen.png b/gfx/titlescreen/titlescreen.png
new file mode 100644
index 0000000..76f8e3a
--- /dev/null
+++ b/gfx/titlescreen/titlescreen.png
Binary files differ
diff --git a/main.asm b/main.asm
index 2be5e9d..440a172 100755
--- a/main.asm
+++ b/main.asm
@@ -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"