summaryrefslogtreecommitdiff
path: root/home/math.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/math.asm
parent0cbe04da44744073c4c164df970b1571b1fda1a6 (diff)
Remove even more address comments
That should be all of them this time
Diffstat (limited to 'home/math.asm')
-rw-r--r--home/math.asm3
1 files changed, 1 insertions, 2 deletions
diff --git a/home/math.asm b/home/math.asm
index 21582b8f6..4a1711343 100644
--- a/home/math.asm
+++ b/home/math.asm
@@ -1,4 +1,4 @@
-AddNTimes:: ; 0x30fe
+AddNTimes::
; Add bc * a to hl.
and a
ret z
@@ -7,7 +7,6 @@ AddNTimes:: ; 0x30fe
dec a
jr nz, .loop
ret
-; 0x3105
SimpleMultiply::
; Return a * c.