summaryrefslogtreecommitdiff
path: root/home.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2017-12-10 00:06:20 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2017-12-10 00:06:20 -0500
commitab7025a144605de609fed4ca67a281fb4cde8705 (patch)
tree7e12c27303a3def3393f9672a38acef5e7fb9071 /home.asm
parent32ea595c47d84cf6759f15c0d82fcad35ac4dcbd (diff)
Consistent code formatting: no redundant `a`s and spaces after commas
Diffstat (limited to 'home.asm')
-rw-r--r--home.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/home.asm b/home.asm
index 435c2e55c..4686ed4b1 100644
--- a/home.asm
+++ b/home.asm
@@ -1830,7 +1830,7 @@ PrintBCDNumber:: ; 38bb
; 0x38f2
PrintBCDDigit:: ; 38f2
- and a, %00001111
+ and %00001111
and a
jr z, .zeroDigit
.nonzeroDigit
@@ -1845,7 +1845,7 @@ PrintBCDDigit:: ; 38f2
.skipCurrencySymbol
res 7, b ; unset 7 to indicate that a nonzero digit has been reached
.outputDigit
- add a, "0"
+ add "0"
ld [hli], a
jp PrintLetterDelay