⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 syscall.s

📁 klibc精简化的c程序库
💻 S
字号:
/* * arch/m68k/syscall.S * * Common tail-handling code for system calls. * * The arguments are on the stack; the system call number in %d0. */	.text	.align	2	.globl	__syscall_common	.type	__syscall_common, @function__syscall_common:	movem.l %d2-%d6, -(%sp)	/* 5 registers saved */	movem.l	24(%sp), %d1-%d6	trap	#0	cmpi.l	#-4095, %d0	blt.l	1f	neg.l	%d0	move.l	%d0, (errno)	moveq	#-1, %d01:	movea.l	%d0, %a0	/* Redundant return */	movem.l (%sp)+, %d2-%d6 /* Restore registers */	rts	.size	__syscall_common,.-__syscall_common

⌨️ 快捷键说明

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