.model tiny
.486
.data
dat1 db 12h,13h,14h,15h
term db '$'
.code
.startup
lea dx,dat1
mov ah,09h
int 21h
.exit
end
this is the output i am getting if i place a string instead of array it work fine
I tried to print the array shown to my dosbox terminal.