summaryrefslogtreecommitdiff
path: root/home/math.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home/math.asm')
-rw-r--r--home/math.asm25
1 files changed, 0 insertions, 25 deletions
diff --git a/home/math.asm b/home/math.asm
deleted file mode 100644
index 8b3db6f..0000000
--- a/home/math.asm
+++ /dev/null
@@ -1,25 +0,0 @@
-include "constants.asm"
-
-if DEBUG
-SECTION "Math utility functions", ROM0 [$3380]
-else
-SECTION "Math utility functions", ROM0 [$3344]
-endc
-
-Multiply::
- push hl
- push bc
- callab _Multiply
- pop bc
- pop hl
- ret
-
-Divide::
- push hl
- push de
- push bc
- homecall _Divide
- pop bc
- pop de
- pop hl
- ret