2012年8月19日

C++ 中嵌入汇编

摘要: C++ 中嵌入汇编View Code #include<iostream>using namespace std;int main(){ int a,b; while(scanf("%d%d",&a,&b)==2){ int *c=&a; __asm{ mov eax,c; mov eax,[eax]; mov ebx,b; lea eax,[eax+ebx]; mov a,eax; } cout<<a... 阅读全文

posted @ 2012-08-19 19:56 more think, more gains 阅读(204) 评论(0) 推荐(0) 编辑

导航