View Single Post
Old 06-20-2004, 08:21 PM   #5 (permalink)
Amaranthine
Registered User
 
Amaranthine's Avatar
 
Join Date: May 2004
Posts: 47
Amaranthine is on a distinguished road
It's a procedure so I give al a value and then call the procedure
Code:
.data
digitTable db "0123456789ABCDEF"

.code
main proc
    mov ax,@data
    mov ds,ax

    sub ax,ax
    add al,7
    call Al2Ascii
    .exit
main endp
end main
or were you meaning something else?
Amaranthine is offline   Reply With Quote