我在汇编中实现了自己的strlen,但它没有返回正确的值。它返回字符串长度+4。因此。我不明白为什么……我希望你们中的任何一个……汇编源:section.text[GLOBALstringlen:];Cfunctionstringlen:pushebpmovebp,esp;setupthestackframemovecx,[ebp+8]xoreax,eax;loopcounterstartLoop:xoredx,edxmovedx,[ecx+eax]inceaxcmpedx,0x0;nullbytejnestartLoopend:popebpret以及主要例程:#includeexte