hand.s

来自「freedos32的源代码」· S 代码 · 共 30 行

S
30
字号
/* FD32 Interrupt Handlers & similar stuff * by Luca Abeni *  * This is free software; see GPL.txt */#include <ll/i386/linkage.h>#include <ll/i386/sel.h>	.globl SYMBOL_NAME(khand)SYMBOL_NAME_LABEL(khand)	pushal	pushl   %ds        pushl   %es        pushl   %fs        pushl   %gs	pushfl	movw	$(X_FLATDATA_SEL),%ax	movw	%ax,%es	movw	%ax,%ds	cld	call	SYMBOL_NAME(keyb_handler)	popl	%eax	popl	%gs	popl	%fs	popl	%es	popl	%ds	popal	iret

⌨️ 快捷键说明

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