电子工业出版社《自己动手写操作系统》源代码
源代码在线查看: const.h
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
const.h
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Forrest Yu, 2005
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#ifndef _TINIX_CONST_H_
#define _TINIX_CONST_H_
/* 函数类型 */
#define PUBLIC /* PUBLIC is the opposite of PRIVATE */
#define PRIVATE static /* PRIVATE x limits the scope of x */
/* GDT 和 IDT 中描述符的个数 */
#define GDT_SIZE 128
#endif /* _TINIX_CONST_H_ */