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

📄 cli_sti.asm.h

📁 linux下简单实现VOS游戏
💻 H
字号:
/* The 15-410 kernel project * *   cli_sti.asm.h * * This file should be #included in all assembly language source * files that use the cli or sti instruction. This is so that * profiling the preemptiveness of the kernel is possible * even when interrupts are enabled or disabled within * functions written in assembly language. * */#ifndef _CLI_STI_ASM_H#define _CLI_STI_ASM_H#define cli cli;\            pushl %ebx;\            movl $0x3badd00d, %ebx;\            xchg %bx, %bx;\            popl %ebx#define sti pushl %ebx;\            movl $0x4badd00d, %ebx;\            xchg %bx, %bx;\            popl %ebx;\            sti#endif /* _CLI_STI_ASM_H */

⌨️ 快捷键说明

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