aboutsummaryrefslogtreecommitdiffstats
path: root/home/print_num.asm
diff options
context:
space:
mode:
authorvulcandth <vulcandth@gmail.com>2022-06-06 16:25:34 -0500
committerGitHub <noreply@github.com>2022-06-06 17:25:34 -0400
commitc1ef7b75972fa4fbdf125bc85cc1a66f358151cd (patch)
treebcf71939ec5573ed5001c4a4b4342d26e5d8f9b1 /home/print_num.asm
parentImproved Virtual Console patch identifiers (#85) (diff)
downloadpokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.tar.gz
pokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.tar.xz
pokeyellow-c1ef7b75972fa4fbdf125bc85cc1a66f358151cd.zip
RGBDS syntax updates (#86)
New MACRO and DEF syntax
Diffstat (limited to 'home/print_num.asm')
-rw-r--r--home/print_num.asm22
1 files changed, 11 insertions, 11 deletions
diff --git a/home/print_num.asm b/home/print_num.asm
index d86527a6..4872d859 100644
--- a/home/print_num.asm
+++ b/home/print_num.asm
@@ -70,20 +70,20 @@ PrintNumber::
cp 6
jr z, .hundred_thousands
-print_digit: MACRO
+MACRO print_digit
-IF (\1) / $10000
- ld a, \1 / $10000 % $100
-ELSE
- xor a
-ENDC
+ IF (\1) / $10000
+ ld a, \1 / $10000 % $100
+ ELSE
+ xor a
+ ENDC
ldh [hPowerOf10 + 0], a
-IF (\1) / $100
- ld a, \1 / $100 % $100
-ELSE
- xor a
-ENDC
+ IF (\1) / $100
+ ld a, \1 / $100 % $100
+ ELSE
+ xor a
+ ENDC
ldh [hPowerOf10 + 1], a
ld a, \1 / $1 % $100