mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-06 06:18:40 +10:00
Fixed the new parseHex
I accidentally did `add 0xe9` without specifying `a`
This commit is contained in:
parent
2224a9264e
commit
174148100c
@ -16,12 +16,11 @@ parseHex:
|
|||||||
sub 0xf6 ; maps to 0-9 and carries if not a digit
|
sub 0xf6 ; maps to 0-9 and carries if not a digit
|
||||||
ret nc
|
ret nc
|
||||||
|
|
||||||
.alpha:
|
|
||||||
and 0xdf ; converts lowercase to uppercase
|
and 0xdf ; converts lowercase to uppercase
|
||||||
add 0xe9 ; map 0x11-x017 onto 0xFA - 0xFF
|
add a, 0xe9 ; map 0x11-x017 onto 0xFA - 0xFF
|
||||||
sub 0xfa ; map onto 0-6
|
sub 0xfa ; map onto 0-6
|
||||||
ret c
|
ret c
|
||||||
; We have alpha.
|
; we have an A-F digit
|
||||||
add a, 10 ; C is clear, map back to 0xA-0xF
|
add a, 10 ; C is clear, map back to 0xA-0xF
|
||||||
ret
|
ret
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user