x86.h
来自「自己从头开始开发操作系统的几个实例」· C头文件 代码 · 共 20 行
H
20 行
#ifndef __TL_X86_H
#define __TL_X86_H
#ifdef __cplusplus
extern "C"
{
#endif
unsigned inportb(unsigned short port);
void outportb(unsigned port, unsigned val);
unsigned disable(void);
void enable(void);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?