mpx.s.cpp
来自「一个简单的操作系统minix的核心代码」· C++ 代码 · 共 14 行
CPP
14 行
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
src/kernel/mpx.s
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
05800 #
05801 ! Chooses between the 8086 and 386 versions of the Minix startup code.
05802
05803 #include <minix/config.h>
05804 #if _WORD_SIZE == 2
05805 #include "mpx88.s"
05806 #else
05807 #include "mpx386.s"
05808 #endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?