摘要: 2.5.1用汇编代码编程 将C代码编译成汇编代码 C代码: /**********a.c file********/ #include <stdio.h> extern int B(); int A(int x,int y) { int d,e,f; d = 4;e = 5;f = 6; f = B 阅读全文
posted @ 2021-12-05 11:16 Bzrael 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 1. 在X86_64架构下实践2.4中的内容 main.c测试 main.c测试代码 #include <stdio.h> int sub(int x,int y) { int u,v; u = 4;v = 5; return x+y+u+v; } int main() { int a,b,c; a 阅读全文
posted @ 2021-12-05 11:15 Bzrael 阅读(74) 评论(0) 推荐(0) 编辑