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 @@
DelayFrame:: ; 45a
DelayFrame::
; Wait for one frame
ld a, 1
ld [wVBlankOccurred], a
@@ -10,13 +10,11 @@ DelayFrame:: ; 45a
and a
jr nz, .halt
ret
; 468
DelayFrames:: ; 468
DelayFrames::
; Wait c frames
call DelayFrame
dec c
jr nz, DelayFrames
ret
; 46f