dosseg .model small .stack 100h .data .code main proc mov ah, 2 mov bx, 1 mov cx, 5 lines: push cx spaces: mov dx, ' ' int 21h loop spaces mov cx, bx skip: stars: mov dx, '*' int 21h loop stars mov dx, 10 int 21h mov dx, 13 int 21h inc bx pop cx loop lines mov ah, 4ch int 21h main endp end main