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

Corrected error in comments, and a new parseHex

5 bytes saved in parseHex, again hard to say what that does to speed, the shortest possible speed is probably a little slower but I think non-error cases should be around 9 cycles faster for decimal and 18 cycles faster for hex as there's now only two conditional returns and no compliment carries.
This commit is contained in:
Clanmaster21 2019-10-13 18:45:28 +01:00 committed by GitHub
parent f871ea671e
commit 2224a9264e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,23 +11,21 @@
; On success, the carry flag is reset. On error, it is set. ; On success, the carry flag is reset. On error, it is set.
parseHex: parseHex:
; First, let's see if we have an easy 0-9 case ; First, let's see if we have an easy 0-9 case
sub '0'
ret c add a, 0xc6 ; maps '0'-'9' onto 0xf6-0xff
cp 10 sub 0xf6 ; maps to 0-9 and carries if not a digit
ccf
ret nc ret nc
.alpha: .alpha:
and 0xdf ; converts uppercase to lowercase and 0xdf ; converts lowercase to uppercase
sub 0x11 ; C if <'A' add 0xe9 ; map 0x11-x017 onto 0xFA - 0xFF
ret c sub 0xfa ; map onto 0-6
cp 6 ; not C if >'F' ret c
ccf
ret c
; We have alpha. ; We have alpha.
add a, 10 ; C is clear add a, 10 ; C is clear, map back to 0xA-0xF
ret ret
; Parses 2 characters of the string pointed to by HL and returns the numerical ; Parses 2 characters of the string pointed to by HL and returns the numerical
; value in A. If the second character is a "special" character (<0x21) we don't ; value in A. If the second character is a "special" character (<0x21) we don't
; error out: the result will be the one from the first char only. ; error out: the result will be the one from the first char only.