我有一个用 c++ 编写的现有程序,可以计算字数。我将如何将其转换为程序集以在 68000 处理器之类的设备上运行?我应该从哪里开始?
int _tmain(int argc, _TCHAR* argv[])
{
int i=0;
int words=0;
bool last_space=true;
while( test_string[i]!=0)
{
if(!last_space && test_string[i]==' ')//end of word - space preceded by not space must handle multi spaces
words=words+1;
if (test_string[i]==' ')
last_space=true;
else
last_space=false;
i++;
}
return 0;
}