我是汇编语言的新手。于是开始写小程序。我编写了一个基本的循环程序来打印“*”金字塔。但程序进入无限循环。我正在粘贴下面的代码。有人可以帮忙吗?开始:
mov ecx,2
invoke StdOut, addr startProg
label_1:
.while ecx > 0
push ecx
pop aInt
.while aInt > 0
invoke StdOut, addr star
sub aInt, 1
.endw
dec ecx
.endw
;invoke StdOut, addr newline
jmp out_
out_:
invoke ExitProcess, 0
结束开始