汇编初时化内存空间为空的函数

procedure InitZero(sText:Pchar;Count:Integer);
asm
  push edi
  lea edi,[sText]
  mov ecx,Count
  mov al,0
  rep stosb
  pop edi
end;
//可以用这个替换zeromemory函数

你可能感兴趣的:(汇编初时化内存空间为空的函数)