engine/pokegear.asm

This commit is contained in:
PikalaxALT 2015-11-16 21:07:26 -05:00
parent 435b0cf686
commit ba871547ed
8 changed files with 3122 additions and 3110 deletions

2989
engine/pokegear.asm Executable file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -285,7 +285,7 @@ SpecialNameRater: ; c2b9
Special_TownMap: ; c2c0
call FadeToMenu
callba Function9191c
callba _TownMap
call Function2b4d
ret
; c2cd

View File

@ -494,7 +494,7 @@ StartMenu_Pokedex: ; 12937
StartMenu_Pokegear: ; 1294c
call FadeToMenu
callba Function90b8d
callba PokeGear
call Function2b3c
ld a, 0
ret

File diff suppressed because it is too large Load Diff

View File

@ -289,16 +289,19 @@ CopyPals:: ; d50
; d79
Functiond79:: ; d79
ClearVBank1:: ; d79
ld a, [hCGB]
and a
ret z
ld a, 1
ld [rVBK], a
ld hl, VTiles0
ld bc, $2000
ld bc, VRAM_End - VTiles0
xor a
call ByteFill
ld a, 0
ld [rVBK], a
ret

1424
main.asm

File diff suppressed because it is too large Load Diff

View File

@ -11,3 +11,4 @@ VTiles4:: ds $800
VTiles5:: ds $800
VBGMap2:: ds $400
VBGMap3:: ds $400
VRAM_End::