一个有目标,为自己的未来努力奋斗的人
分类: C/C++
2011-03-07 13:12:56
C语言程序中调用汇编函数示例,从写代码到编译成功全过程.
编写a.s如下
.globl add
add:
popl %eax;
popl %ebx;
movl (%ebx),%ecx;
addl $1,%ecx;
movl %ecx,(%ebx)
pushl %ebx;
pushl %eax;
ret
编写a.c如下
#include
extern int add(int i);
int main()
{
int i=0;
add(&i);
printf("%d\n",i);
}
运用如下命令进行编译
as -o a1.o a.s
gcc -c -o a2.o a.c
gcc -o a a1.o a2.o
然后运行a就可以看到结果了:-)
chinaunix网友2011-03-27 18:36:36
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com