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 @@
FarCall_de:: ; 2d54
FarCall_de::
; Call a:de.
; Preserves other registers.
@@ -13,10 +13,9 @@ FarCall_de:: ; 2d54
.de
push de
ret
; 2d63
FarCall_hl:: ; 2d63
FarCall_hl::
; Call a:hl.
; Preserves other registers.
@@ -26,9 +25,8 @@ FarCall_hl:: ; 2d63
ld a, [hBuffer]
rst Bankswitch
call FarJump_hl
; 2d6e
ReturnFarCall:: ; 2d6e
ReturnFarCall::
; We want to retain the contents of f.
; To do this, we can pop to bc instead of af.
@@ -47,8 +45,6 @@ ReturnFarCall:: ; 2d6e
ld a, [wFarCallBCBuffer + 1]
ld c, a
ret
; 2d82
FarJump_hl:: ; 2d82
FarJump_hl::
jp hl
; 2d83