📄 hand.s
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -