diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-10 00:06:20 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-10 00:06:20 -0500 |
commit | ab7025a144605de609fed4ca67a281fb4cde8705 (patch) | |
tree | 7e12c27303a3def3393f9672a38acef5e7fb9071 /home.asm | |
parent | 32ea595c47d84cf6759f15c0d82fcad35ac4dcbd (diff) |
Consistent code formatting: no redundant `a`s and spaces after commas
Diffstat (limited to 'home.asm')
-rw-r--r-- | home.asm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |