BEgan work on hex to ascii

pull/4/head
E. Almqvist 4 years ago
parent 30171f38cf
commit 5be5aaccfb
  1. 15
      src/elib/convert.asm

@ -0,0 +1,15 @@
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:
mov cx, 0 ; incrementor
hexloop:
return:
mov bx, HEX_OUT
ret
Loading…
Cancel
Save