h2asc proc
push bx
mov bx,offset ascii
and al,0fh
xlat cs:ascii
pop bx
ret
ascii db 30h,31h,32h,33h,34h,35h,36h,37h
db 38h,39h,41h,42h,43h,44h,45h,46h
h2asc endp
push bx
mov bx,offset ascii
and al,0fh
xlat cs:ascii
pop bx
ret
ascii db 30h,31h,32h,33h,34h,35h,36h,37h
db 38h,39h,41h,42h,43h,44h,45h,46h
h2asc endp