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 Special_TownMap: ; c2c0
call FadeToMenu call FadeToMenu
callba Function9191c callba _TownMap
call Function2b4d call Function2b4d
ret ret
; c2cd ; c2cd

View File

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

File diff suppressed because it is too large Load Diff

View File

@@ -289,16 +289,19 @@ CopyPals:: ; d50
; d79 ; d79
Functiond79:: ; d79 ClearVBank1:: ; d79
ld a, [hCGB] ld a, [hCGB]
and a and a
ret z ret z
ld a, 1 ld a, 1
ld [rVBK], a ld [rVBK], a
ld hl, VTiles0 ld hl, VTiles0
ld bc, $2000 ld bc, VRAM_End - VTiles0
xor a xor a
call ByteFill call ByteFill
ld a, 0 ld a, 0
ld [rVBK], a ld [rVBK], a
ret 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 VTiles5:: ds $800
VBGMap2:: ds $400 VBGMap2:: ds $400
VBGMap3:: ds $400 VBGMap3:: ds $400
VRAM_End::