-
-
[已解决][求助]一个内联汇编程序
-
发表于:
2009-5-13 21:28
3891
-
该程序编译运行后只弹出一个控制台窗口,什么都没打印,为什么?
#include "stdafx.h"
#include <string.h>
int _tmain(int argc, _TCHAR* argv[])
{
char dst[16] = {'\0'};
char src[16] = "hello world";
__asm
{
push 10h
lea eax, dst
push eax
lea eax, src
push eax
call DWORD PTR memcpy
add esp, 0ch
}
printf("%s", dst);
return 0;
}
[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课