syscall.s

来自「klibc精简化的c程序库」· S 代码 · 共 17 行

S
17
字号
#include <asm/asm.h>#include <asm/regdef.h>#include <asm/unistd.h>	.set noreorderLEAF(__syscall_common)	syscall        beqz    a3, 1f	# sw is actually two instructions; the first one goes	# in the branch delay slot	# XXX: Break this up manually; as it is now it generates warnings.        sw      v0, errno        li      v0, -11:      jr      ra	END(__syscall_common)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?