From d6ac5407e76558d28111be1d1bb478de4f99db62 Mon Sep 17 00:00:00 2001 From: yenatch Date: Fri, 22 Aug 2014 20:48:58 -0700 Subject: Add the initial mobile adapter save data. The contents of the save and the rest of the bank are unknown. --- main.asm | 6 ++++-- misc/mobile_save.bin | Bin 0 -> 4096 bytes 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 misc/mobile_save.bin diff --git a/main.asm b/main.asm index 1ea152d83..407e034b2 100644 --- a/main.asm +++ b/main.asm @@ -117787,7 +117787,7 @@ INCBIN "baserom.gbc",$1f4000,$1f4003 - $1f4000 Function1f4003: ; 1f4003 ld a, $6 call GetSRAMBank - ld hl, $4018 + ld hl, MobileSave ld de, $a000 ld bc, $1000 call CopyBytes @@ -117795,7 +117795,9 @@ Function1f4003: ; 1f4003 ret ; 1f4018 -INCBIN "baserom.gbc",$1f4018,$1f636a - $1f4018 +MobileSave: INCBIN "misc/mobile_save.bin" + +INCBIN "baserom.gbc",$1f5018,$1f636a - $1f5018 SECTION "bank7E", ROMX, BANK[$7E] diff --git a/misc/mobile_save.bin b/misc/mobile_save.bin new file mode 100644 index 000000000..fc9afb13c Binary files /dev/null and b/misc/mobile_save.bin differ -- cgit v1.2.3