在 Nasm 汇编语言中设置循环计数器
我如何告诉循环循环 x 次。例如循环10次。目前它只循环两次。
loop:
mov eax, 4
mov ebx, 1
mov ecx, ask
mov edx, askLength
int 0x80
mov eax, 3
mov ebx, 1
mov ecx, edi
mov edx, 3
int 0x80
add edi, 3; Loop change
cmp edi, input+6 ;
jl loop ; Loop again
How do i tell the loop to loop x amount of times. For example loop 10 times. At the moment it loops only twice.
loop:
mov eax, 4
mov ebx, 1
mov ecx, ask
mov edx, askLength
int 0x80
mov eax, 3
mov ebx, 1
mov ecx, edi
mov edx, 3
int 0x80
add edi, 3; Loop change
cmp edi, input+6 ;
jl loop ; Loop again
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将 edi 与 input+6 进行比较,每次加 3。 6/3=2。您需要适当更改
cmp edi, input+X
行,但看起来这是一个缓冲区,因此请确保它足够大以容纳您正在检索的数据量。It compares edi to input+6 and adds 3 each time. 6/3=2. You need to change the
cmp edi, input+X
line appropriately, but it appears this is a buffer, so make sure it is big enough to hold the amount of data you are retrieving.