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

Fixed erroring out for all number >0x1999

I fixed the errors for numbers >0x1999, sadly it is now 6 bytes bigger, so 5 bytes larger than the original, but the speed increases should still hold.
This commit is contained in:
Clanmaster21 2019-10-20 23:56:31 +01:00 committed by GitHub
parent 67adc6fcfc
commit ab4fca334d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,8 +17,8 @@
; same conditions as parseLiteral.
; Sets Z on success, unset on error.
; 55 bytes
; 107 cycles overhead + up to 45 cycles if length >= 5
; 61 bytes
; 107 cycles overhead + up to 73 cycles if length >= 5
; 136 cycles in loop
; first digit is skipped in overhead
parseDecimal:
@ -63,6 +63,12 @@ parseDecimal:
add hl, de
ex de, hl
jr nc, .loop ; if it doesn't carry, it's small enough
exx
inc hl
ld a, (hl)
exx
add a, 0xd0
.error:
sub 0xd0 ; if a is null, set Z
; a is checked for null before any errors