TITLE MASM Template (main.asm)
; Description:
;
; Revision date:
INCLUDE Irvine32.inc
.data
counter dword 1;
.code
main PROC
call readint;
mov ecx,eax;
L1:
push ecx;
mov ecx,counter ;
L2:
mov al,'*';
call writechar;
loop l2;
pop ecx;
inc counter;
call crlf;
loop l1;
exit
main ENDP
end main