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 @@
Reset:: ; 150
Reset::
di
call MapSetup_Sound_Off
xor a
@@ -17,10 +17,9 @@ Reset:: ; 150
call DelayFrames
jr Init
; 16e
_Start:: ; 16e
_Start::
cp $11
jr z, .cgb
xor a
@@ -33,10 +32,9 @@ _Start:: ; 16e
ld [hCGB], a
ld a, $1
ld [hSystemBooted], a
; 17d
Init:: ; 17d
Init::
di
@@ -172,10 +170,9 @@ Init:: ; 17d
xor a
ld [wMapMusic], a
jp GameInit
; 245
ClearVRAM:: ; 245
ClearVRAM::
; Wipe VRAM banks 0 and 1
ld a, 1
@@ -190,9 +187,8 @@ ClearVRAM:: ; 245
xor a
call ByteFill
ret
; 25a
ClearWRAM:: ; 25a
ClearWRAM::
; Wipe swappable WRAM banks (1-7)
; Assumes CGB or AGB
@@ -209,9 +205,8 @@ ClearWRAM:: ; 25a
cp 8
jr nc, .bank_loop ; Should be jr c
ret
; 270
ClearsScratch:: ; 270
ClearsScratch::
; Wipe the first 32 bytes of sScratch
ld a, BANK(sScratch)
@@ -222,4 +217,3 @@ ClearsScratch:: ; 270
call ByteFill
call CloseSRAM
ret
; 283