内核组织¶ Overview¶ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15src ├── config │ └── kernel.mk ├── include │ └── textos │ ├── base.h │ ├── textos.h │ └── type.h ├── kernel │ ├── arch │ │ └── x64 │ ├── init.c │ ├── linker.ld │ └── Makefile └── Makefile config/kernel.mk -> 编译参数等设置 include/textos -> 内核头文件 kernel/arch -> 平台代码(虽然暂不支持其他架构哈)