我需要增加一个数字,以便代码永远增加,但它保持为零。
这是我的代码:
section .data
FORMAT: db '%c', 0
FORMATDBG: db '%d', 10, 0
EQUAL: db "is equal", 10, 0
repeat:
push ecx ; just to print
push FORMATDBG ; just to print
call printf ; just to print
add esp, 8 ; add the spaces
inc ecx ; increment ecx
cmp ecx, 0 ; compare ecx to zero
ja repeat ; if not equal to zero loop again
答案 0 :(得分:5)
repeat:
xor ecx, ecx
push ecx ; just to print
push FORMATDBG ; just to print
call printf ; just to print
add esp, 8 ; add the spaces
inc ecx ; increment ecx
cmp ecx, 0 ; compare ecx to zero
ja repeat ; if not equal to zero loop again
xor ecx, ecx
将ecx
设置为零。我不确定你是否知道这一点。您可能不希望它在每次迭代时发生。此外,你的循环条件ja repeat
目前仅在ecx > 0
可能不是你想要的(或者它是什么?)时才会产生循环。
最后一件事,printf
可能会导致ecx
(我假设为cdecl
或stdcall
)。阅读调用约定(不确定您所使用的编译器/ OS)并查看哪些寄存器保证在函数调用中保留。
就您的代码而言,您可能希望更接近这一点:
xor ebx, ebx
repeat:
push ebx ; just to print
push FORMATDBG ; just to print
call printf ; just to print
add esp, 8 ; add the spaces
inc ebx ; increment ecx
cmp ebx, 0 ; compare ecx to zero
ja repeat ; if not equal to zero loop again
但这不会导致无限循环。当ebx
达到其最大值时,其值将回绕到0,这将导致循环条件(ebx>0
)计算为false并退出循环。