lnlidawei

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2024年11月18日

摘要: [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 阅读全文
posted @ 2024-11-18 07:06 lnlidawei 阅读(3) 评论(0) 推荐(0) 编辑

摘要: [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 阅读全文
posted @ 2024-11-18 05:01 lnlidawei 阅读(5) 评论(0) 推荐(0) 编辑

摘要: [asm/c/cpp]: function syscall() 1. syscall() - docs [root@rocky:src]# cat syscall.txt syscall(2) System Calls Manual syscall(2) NAME syscall - indirec 阅读全文
posted @ 2024-11-18 04:16 lnlidawei 阅读(6) 评论(0) 推荐(0) 编辑