summaryrefslogtreecommitdiff
path: root/engine/math/math.asm
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2018-06-24 16:09:41 +0200
committermid-kid <esteve.varela@gmail.com>2018-06-24 16:13:22 +0200
commit1d9a68dbdd0132035f1fc7b7ea8f7fdc24741507 (patch)
tree3af0a92f5f7dc10f32eed04d9daae52749fc33c2 /engine/math/math.asm
parent131875d3e37044ec995287af7c93decd86a0d659 (diff)
Remove all address comments
Diffstat (limited to 'engine/math/math.asm')
-rw-r--r--engine/math/math.asm6
1 files changed, 2 insertions, 4 deletions
diff --git a/engine/math/math.asm b/engine/math/math.asm
index 0cd6b0b47..4240ef6cd 100644
--- a/engine/math/math.asm
+++ b/engine/math/math.asm
@@ -1,4 +1,4 @@
-_Multiply:: ; 66de
+_Multiply::
; hMultiplier is one byte.
ld a, 8
@@ -82,10 +82,9 @@ _Multiply:: ; 66de
ld [hProduct + 0], a
ret
-; 673e
-_Divide:: ; 673e
+_Divide::
xor a
ld [hMathBuffer + 0], a
ld [hMathBuffer + 1], a
@@ -193,4 +192,3 @@ _Divide:: ; 673e
ld [hDividend + 0], a
ret
-; 67c1