mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:38:40 +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:
parent
67adc6fcfc
commit
ab4fca334d
@ -17,8 +17,8 @@
|
|||||||
; same conditions as parseLiteral.
|
; same conditions as parseLiteral.
|
||||||
; Sets Z on success, unset on error.
|
; Sets Z on success, unset on error.
|
||||||
|
|
||||||
; 55 bytes
|
; 61 bytes
|
||||||
; 107 cycles overhead + up to 45 cycles if length >= 5
|
; 107 cycles overhead + up to 73 cycles if length >= 5
|
||||||
; 136 cycles in loop
|
; 136 cycles in loop
|
||||||
; first digit is skipped in overhead
|
; first digit is skipped in overhead
|
||||||
parseDecimal:
|
parseDecimal:
|
||||||
@ -63,6 +63,12 @@ parseDecimal:
|
|||||||
add hl, de
|
add hl, de
|
||||||
ex de, hl
|
ex de, hl
|
||||||
jr nc, .loop ; if it doesn't carry, it's small enough
|
jr nc, .loop ; if it doesn't carry, it's small enough
|
||||||
|
|
||||||
|
exx
|
||||||
|
inc hl
|
||||||
|
ld a, (hl)
|
||||||
|
exx
|
||||||
|
add a, 0xd0
|
||||||
.error:
|
.error:
|
||||||
sub 0xd0 ; if a is null, set Z
|
sub 0xd0 ; if a is null, set Z
|
||||||
; a is checked for null before any errors
|
; a is checked for null before any errors
|
||||||
|
Loading…
Reference in New Issue
Block a user