我的程序是用C++編寫的,其中嵌入了一些x86彙編語言。我有兩個嵌套的彙編語言循環,我必須經過。然而,當我編譯我的程序時,我會遇到一個無限循環。在C++中的等效方案將是這個樣子:爲什麼我的彙編嵌套for循環導致無限循環
#include<iostream>
using namespace std;
int main()
{
int a[4] = {3,6,4,7};
for(int k = 0 ; k < 4;k++)
{
for(int l = 0 ; l < a[k];l++)
{
cout<<'*';
}
cout<<endl;
}
system("pause");
return 0;
}
/*
***
******
****
*******
Press any key to continue . . .
*/
這是同樣的事情,但裝配完成混合
#include<iostream>
using namespace std;
void output(); //function for making an '*'
void makeSpace(); //function for making a space
int main()
{
int a[4]={3,6,4,7};
int counter = 0; //counter that will be used for first forloop
int counter2 = 0; // counter to be used for second forloop
_asm{
mov ebx,0 // this is to move from element 0,1,2,3,4, through the array
mov ecx,0 // ecx will get the data from the array, only to be used as a
// counter in forloop2 though.
for1:
cmp counter,4 //begins for firloop
je starts
mov ecx,[a+ebx] // move the 0th element from array to ecx
add ebx,4// ebx = ebx+4, I'm doing this to advance the array position (int)
inc counter// increment counter by one
for2:
cmp counter2,ecx //begin forloop2,
je starts2
call output
inc counter2 //increment counter2 by one
jmp for2
starts2:
call makeSpace
jmp for1
starts:
}
return 0;
}
void output()
{
cout<<'*';
}
void makeSpace()
{
cout<<endl;
}
爲什麼這會導致一個無限循環?
兩件事情(1)這不是論壇,不需要介紹自己或向我們問好; (2)你的問題到底是什麼? – user7116
請添加一個實際的信息標題關於你要問什麼。你目前擁有的不是一個標題。請妥善格式化並縮進您的代碼。 – Bart
您是否嘗試構建C++版本並檢查編譯器生成的程序集? – mah