标签:汇编
#include <iostream>
using namespace std;
int add(int a, int b)
{
__asm
{
mov eax, dword ptr[a]
add eax, dword ptr[b]
}
}
int add(int *a, int *b)
{
__asm
{
mov eax, dword ptr[a]
mov eax, dword ptr[eax]
mov ecx, dword ptr[b]
add eax, dword ptr[ecx]
}
}
int main()
{
int a = 3;
int b = 4;
int nvalue = add(&a, &b);
cout << nvalue << endl;
std::system("pause");
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:汇编
原文地址:http://blog.csdn.net/zhang_ruiqiang/article/details/47055079