summaryrefslogtreecommitdiff
path: root/home/math.asm
diff options
context:
space:
mode:
authorRangi <35663410+Rangi42@users.noreply.github.com>2020-02-23 14:16:26 -0500
committerGitHub <noreply@github.com>2020-02-23 14:16:26 -0500
commitef1c4c5a813595841a2c81105ca0c06e5ea85db0 (patch)
treee5d59ac8f5a649ba4add7f7a3fa64c09ecfbc6b5 /home/math.asm
parent9a927c1b3efa2eca886f346a4fcca0eb57278faf (diff)
parent813d0aa73a16ababcf257d4df57ff3b69879b011 (diff)
Merge pull request #687 from mid-kid/master
Small home/ reorganization
Diffstat (limited to 'home/math.asm')
-rw-r--r--home/math.asm10
1 files changed, 0 insertions, 10 deletions
diff --git a/home/math.asm b/home/math.asm
index f385ccbf8..3042cc61d 100644
--- a/home/math.asm
+++ b/home/math.asm
@@ -1,13 +1,3 @@
-AddNTimes::
-; Add bc * a to hl.
- and a
- ret z
-.loop
- add hl, bc
- dec a
- jr nz, .loop
- ret
-
SimpleMultiply::
; Return a * c.
and a