;this is the program to read one of the hex digit A-F & display it on the
;next line in decimal order(for example for a-10,b-11 such that)
.model small
.stack 100h
.data
msg db 'ENTER A HEX NUMBER: $'
msg1 db 0ah,0dh, 'THE DECIMAL VALUE IS: $'
.code
main proc
mov ax,@data
mov ds,ax
lea dx,msg...