摘要: 1.C语言源码#include int g(int x){ return x+3;}int f(int x){ return g(x);}int main(){ return f(8)+1;}2.生成汇编代码gcc命令gcc -S -o main.s main.c -m323.汇编... 阅读全文
posted @ 2015-04-14 16:13 晓风_7 阅读(197) 评论(0) 推荐(0) 编辑