Added jmp to step2

A jmp to step2 needs to be placed after the conversion to ASCII alpha character
This commit is contained in:
bgregs514 2020-06-25 16:15:34 -05:00 committed by GitHub
parent 7aff64740e
commit 28affaa299
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ hex_loop:
cmp al, 0x39 ; if > 9, add extra 8 to represent 'A' to 'F'
jle step2
add al, 7 ; 'A' is ASCII 65 instead of 58, so 65-58=7
jmp step2
step2:
; 2. get the correct position of the string to place our ASCII char