template.s
来自「Newlib 嵌入式 C库 标准实现代码」· S 代码 · 共 15 行
S
15 行
/* system call template *//* Lots of system calls are trivial functions, so we build their source files from a template. New syscalls can be added simply by editing the Makefile! Usage: Compile this file with "func" set to the name of the syscall. */#include "syscallasm.h"#define concat(a,b) a##b#define makesys(a) concat (SYS_, a) defsyscall (func, makesys(func))
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?