Remove all address comments

This commit is contained in:
mid-kid
2018-06-24 16:09:41 +02:00
parent 131875d3e3
commit 1d9a68dbdd
616 changed files with 12133 additions and 20380 deletions

View File

@@ -1,4 +1,4 @@
NewPokedexEntry: ; fb877
NewPokedexEntry:
ld a, [hMapAnims]
push af
xor a
@@ -32,9 +32,8 @@ NewPokedexEntry: ; fb877
pop af
ld [hMapAnims], a
ret
; fb8c8
.ReturnFromDexRegistration: ; fb8c8
.ReturnFromDexRegistration:
call ClearTileMap
call LoadFontsExtra
call LoadStandardFont
@@ -49,4 +48,3 @@ NewPokedexEntry: ; fb877
call GetSGBLayout
call SetPalettes
ret
; fb8f1

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
AnimateDexSearchSlowpoke: ; 441cf
AnimateDexSearchSlowpoke:
ld hl, .FrameIDs
ld b, 25
.loop
@@ -29,7 +29,7 @@ AnimateDexSearchSlowpoke: ; 441cf
call DelayFrames
ret
.FrameIDs: ; 441fc
.FrameIDs:
; frame ID, duration
db 0, 7
db 1, 7
@@ -38,7 +38,7 @@ AnimateDexSearchSlowpoke: ; 441cf
db 4, 7
db -2
DoDexSearchSlowpokeFrame: ; 44207
DoDexSearchSlowpokeFrame:
ld a, [wDexSearchSlowpokeFrame]
ld hl, .SlowpokeSpriteData
ld de, wVirtualOAMSprite00
@@ -64,7 +64,7 @@ DoDexSearchSlowpokeFrame: ; 44207
inc de
jr .loop
.SlowpokeSpriteData: ; 44228
.SlowpokeSpriteData:
dsprite 11, 0, 9, 0, $00, 0
dsprite 11, 0, 10, 0, $01, 0
dsprite 11, 0, 11, 0, $02, 0
@@ -76,7 +76,7 @@ DoDexSearchSlowpokeFrame: ; 44207
dsprite 13, 0, 11, 0, $22, 0
db -1
DisplayDexEntry: ; 4424d
DisplayDexEntry:
call GetPokemonName
hlcoord 9, 3
call PlaceString ; mon species
@@ -211,11 +211,11 @@ DisplayDexEntry: ; 4424d
call FarString
ret
UnreferencedPOKeString: ; 44331
UnreferencedPOKeString:
; unused
db "#@"
GetDexEntryPointer: ; 44333
GetDexEntryPointer:
; return dex entry pointer b:de
push hl
ld hl, PokedexDataPointerTable
@@ -247,8 +247,8 @@ GetDexEntryPointer: ; 44333
db BANK("Pokedex Entries 129-192")
db BANK("Pokedex Entries 193-251")
GetDexEntryPagePointer: ; 44355
call GetDexEntryPointer ; b:de
GetDexEntryPagePointer:
call GetDexEntryPointer
push hl
ld h, d
ld l, e

View File

@@ -1,29 +1,29 @@
LoadSGBPokedexGFX: ; 1ddf1c
LoadSGBPokedexGFX:
ld hl, SGBPokedexGFX_LZ
ld de, vTiles2 tile $31
call Decompress
ret
LoadSGBPokedexGFX2: ; 1ddf26 (77:5f26)
LoadSGBPokedexGFX2:
ld hl, SGBPokedexGFX_LZ
ld de, vTiles2 tile $31
lb bc, BANK(SGBPokedexGFX_LZ), 58
call DecompressRequest2bpp
ret
SGBPokedexGFX_LZ: ; 1ddf33
SGBPokedexGFX_LZ:
INCBIN "gfx/pokedex/sgb.2bpp.lz"
LoadQuestionMarkPic: ; 1de0d7
LoadQuestionMarkPic:
ld hl, .QuestionMarkLZ
ld de, sScratch
call Decompress
ret
.QuestionMarkLZ: ; 1de0e1
.QuestionMarkLZ:
INCBIN "gfx/pokedex/question_mark.2bpp.lz"
DrawPokedexListWindow: ; 1de171 (77:6171)
DrawPokedexListWindow:
ld a, $32
hlcoord 0, 17
ld bc, 12
@@ -68,7 +68,7 @@ DrawPokedexListWindow: ; 1de171 (77:6171)
.Done:
ret
DrawPokedexSearchResultsWindow: ; 1de1d1 (77:61d1)
DrawPokedexSearchResultsWindow:
ld a, $34
hlcoord 0, 0
ld bc, 11
@@ -111,14 +111,14 @@ DrawPokedexSearchResultsWindow: ; 1de1d1 (77:61d1)
call PlaceString
ret
.esults_D ; 1de23c
.esults_D
; (SEARCH R)
db "ESULTS"
next ""
; (### FOUN)
next "D!@"
DrawDexEntryScreenRightEdge: ; 1de247
DrawDexEntryScreenRightEdge:
ld a, [hBGMapAddress]
ld l, a
ld a, [hBGMapAddress + 1]
@@ -150,7 +150,7 @@ DrawDexEntryScreenRightEdge: ; 1de247
ld [hBGMapAddress + 1], a
ret
Bank77_FillColumn: ; 1de27f
Bank77_FillColumn:
push de
ld de, SCREEN_WIDTH
.loop

View File

@@ -1,4 +1,4 @@
UpdateUnownDex: ; fba18
UpdateUnownDex:
ld a, [wUnownLetter]
ld c, a
ld b, NUM_UNOWN
@@ -17,9 +17,8 @@ UpdateUnownDex: ; fba18
dec hl
ld [hl], c
ret
; fba2e
PrintUnownWord: ; fba2e (3e:7a2e)
PrintUnownWord:
hlcoord 4, 15
ld bc, 12
ld a, " "
@@ -46,7 +45,6 @@ PrintUnownWord: ; fba2e (3e:7a2e)
inc de
ld [hli], a
jr .loop
; fba5a (3e:7a5a)
INCLUDE "data/pokemon/unown_words.asm"