摘要:
[c/cpp]: user stack - test 1. code 1 #include <cstdio> 2 3 4 #define STACKSIZE 100 5 6 7 struct stack { 8 int index; 9 int e[STACKSIZE]; 10 }; 11 12 1 阅读全文
摘要:
[asm] as - linux64 1 code 1 [root@rocky:src]# cat hello64.as 2 # filename = hello64.as 3 4 5 .data 6 msg : .string "Hello, World!\n" 7 len = . - msg 8 阅读全文
摘要:
[asm/c/cpp]: function syscall() 1. syscall() - docs [root@rocky:src]# cat syscall.txt syscall(2) System Calls Manual syscall(2) NAME syscall - indirec 阅读全文