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

📄 signal.s

📁 用于嵌入式Linux系统的标准C的库函数
💻 S
字号:
/ According to the iBCS2 book, signal() has 0x30 in %eax, and the address/ of a function in %edx.  This function is where a signal handler will/ return to; it should just adjust the stack pointer, and call $f,$0./ Strange but true.	.globl	signalsigret:	addl	$4, %esp	lcall	$0xf, $0signal:	movl	$0x30, %eax	movl	sigret, %edx	lcall	$7,$0	jb	_cerror/ The iBCS2 book also clears out %eax here, which seems to be broken.	ret

⌨️ 快捷键说明

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