摘要: #常规版eidt : main.o kbd.o command.o display.o insert.o search.o files.o utils.o cc -o edit main.o kbd.o command.o display.o insert.o search.o files.o ut 阅读全文
posted @ 2023-04-02 09:33 Carltmf 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #movtest1.s -An sample of moving data from memory to a register.section .data value: .int 1.section .text.global mainmain: movl value,$ecx movl $1,$ea 阅读全文
posted @ 2023-04-02 09:24 Carltmf 阅读(42) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#define N 100void f();int main(){ f(); #ifdef N #undef N #endif return 0;}void f(){#if defined(N) printf("N is defined\n");#else prin 阅读全文
posted @ 2023-04-02 09:23 Carltmf 阅读(7) 评论(0) 推荐(0) 编辑