diff --git a/kernel/parse.asm b/kernel/parse.asm index 9c97992..fda3a6e 100644 --- a/kernel/parse.asm +++ b/kernel/parse.asm @@ -11,23 +11,21 @@ ; On success, the carry flag is reset. On error, it is set. parseHex: ; First, let's see if we have an easy 0-9 case - sub '0' - ret c - cp 10 - ccf + + add a, 0xc6 ; maps '0'-'9' onto 0xf6-0xff + sub 0xf6 ; maps to 0-9 and carries if not a digit ret nc .alpha: - and 0xdf ; converts uppercase to lowercase - sub 0x11 ; C if <'A' - ret c - cp 6 ; not C if >'F' - ccf - ret c + and 0xdf ; converts lowercase to uppercase + add 0xe9 ; map 0x11-x017 onto 0xFA - 0xFF + sub 0xfa ; map onto 0-6 + ret c ; We have alpha. - add a, 10 ; C is clear + add a, 10 ; C is clear, map back to 0xA-0xF ret + ; 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 ; error out: the result will be the one from the first char only.