wait.s

来自「汇编代码大全」· S 代码 · 共 12 行

S
12
字号
/	int wait ( int *status )

	.globl	_wait
_wait:
	movw	$0x7f09, %ax
        int     $0x21
	movl	4(%esp), %ecx
	jecxz	1f
        movl    %edx, (%ecx)
1:
        ret

⌨️ 快捷键说明

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