1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-05 06:48:39 +11:00

Fixed tabs and spacing

This commit is contained in:
Clanmaster21 2019-10-13 14:10:35 +01:00 committed by GitHub
parent 15f9869d68
commit 4185650ce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ cmdParse:
jr z, .dot
cp '$'
jr z, .eof
add a, 0xc6 ; inline ParseDecimalDigit
add a, 0xc6 ; inline parseDecimalDigit
sub 0xf6
jr c, .notHandled
; straight number
@ -122,7 +122,7 @@ cmdParse:
inc hl ; advance cmd cursor
ld a, (hl)
ld de, 1 ; if .pmNoSuffix
add a, 0xc6 ; Inline ParseDecimalDigit
add a, 0xc6 ; Inline parseDecimalDigit
sub 0xf6
jr c, .pmNoSuffix
call .parseDecimalM ; --> DE
@ -151,7 +151,7 @@ cmdParse:
.loop:
inc hl
ld a, (hl)
add a, 0xc6 ; Inline ParseDecimalDigit
add a, 0xc6 ; Inline parseDecimalDigit
sub 0xf6
jr nc, .loop
; We're at the first non-digit char. Let's save it because we're going