A poorly written OS for the x86 arch. (WIP)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
eOS/src/elib/convert.asm

27 lines
568 B

HEX_OUT: db "0x0000", ASCII_END
; SR to convert hex values into ASCII strings
; This SR is going to mess up some registers
; since it fills the register with the desired
; pointer toward the string.
hexToASCII:
; pusha
mov cx, 0 ; incrementor
hexloop:
cmp cx, 4 ; check if we reached the end
je return ; if so just return our new ASCII string
mov ax, dx
; mask the hex value in ax so that we get the last "char"
and ax, 0x000f
; convert ax into ASCII (numeric)
add al, ASCII_OFFSET_NUM ; add 0x30
cmp al
return:
mov bx, HEX_OUT
ret