این برنامه چاپ 15 ستاره بصورت پشت سر هم هست که تو Emulator 8086 تستش کردم درست جواب داده :)
stksg segment stack
db 32 dup("stack")
stksg ends
codesg segment para 'code'
main proc far
assume cs : codesg
mov ah,6h; clear screen
mov al,25; number of rows
mov ch,0
mov cl,0
mov dh , 24; rows
mov dl , 79; columns
mov bh , 7
int 10h
mov ah,09h; Request to display
mov al , '*'; to Display Star
mov bh , 0
mov bl , 0f0h; attribute
mov cx , 15; number of prints
int 10h
;mox ax ,4c00h
int 21h
main endp
codesg ends
end main
این اسکرین شات :