summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2018-06-25 02:10:37 +0200
committermid-kid <esteve.varela@gmail.com>2018-06-25 02:10:37 +0200
commit5efce10789bc8291ca5517bdeaacab95459b3fdb (patch)
tree94eaaa56e9c7d869dd6ffe86be1abc0af3ccc2b9 /home.asm
parent0cbe04da44744073c4c164df970b1571b1fda1a6 (diff)
Remove even more address comments
That should be all of them this time
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm7
1 files changed, 2 insertions, 5 deletions
diff --git a/home.asm b/home.asm
index 67753ed21..d7c84bc64 100644
--- a/home.asm
+++ b/home.asm
@@ -132,7 +132,7 @@ IsInArray::
scf
ret
-SkipNames:: ; 0x30f4
+SkipNames::
; Skip a names.
ld bc, NAME_LENGTH
and a
@@ -142,7 +142,6 @@ SkipNames:: ; 0x30f4
dec a
jr nz, .loop
ret
-; 0x30fe
INCLUDE "home/math.asm"
INCLUDE "home/print_text.asm"
@@ -189,7 +188,6 @@ StringCmp::
dec c
jr nz, .loop
ret
-; 0x31e4
CompareLong::
; Compare bc bytes at de and hl.
@@ -217,7 +215,7 @@ CompareLong::
INCLUDE "home/tilemap.asm"
INCLUDE "home/hp_pals.asm"
-CountSetBits:: ; 0x335f
+CountSetBits::
; Count the number of set bits in b bytes starting from hl.
; Return in a, c and [wd265].
ld c, 0
@@ -240,7 +238,6 @@ CountSetBits:: ; 0x335f
ld a, c
ld [wd265], a
ret
-; 0x3376
GetWeekday::
ld a, [wCurDay]