em_rol.s

来自「操作系统源代码」· S 代码 · 共 21 行

S
21
字号
.sect .text; .sect .rom; .sect .data; .sect .bss.sect .text.define .rol	! #bytes in eax.rol:	pop     edx              ! return address	cmp     eax,4	jne     1f	pop     eax	pop     ecx	rol     eax,cl	push    eax	jmp     edx1:.extern EODDZ.extern .trp	mov     eax,EODDZ	push    edx	jmp     .trp

⌨️ 快捷键说明

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