0
.model tiny
.486
.data
dat1    db  12h,13h,14h,15h
term    db  '$'
.code
.startup
    lea dx,dat1
    mov     ah,09h
    int     21h
.exit
end

enter image description here

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.

0 Answers0