摘要: 比如 我们有这样一个C函数#includelong test(int a,int b){ a = a + 1; b = b + 100; return a + b;}void main(){ printf("%d",test(1000,2000));}写成32位汇编就是这样;//////////////////////////////////////////////////... 阅读全文
posted @ 2009-04-23 16:45 jasonM 阅读(753) 评论(0) 推荐(1) 编辑