.
├── boot # 系统引导目录
│ ├── include
│ │ └── boot.inc
│ ├── loader.S
│ └── mbr.S
├── build # 编译目录
├── device # 设备管理目录
│ ├── timer.c
│ └── timer.h
├── kernel # 内核实现目录
│ ├── debug.c
│ ├── debug.h
│ ├── global.h
│ ├── init.c
│ ├── init.h
│ ├── interrupt.c
│ ├── interrupt.h
│ ├── kernel.S
│ ├── main.c
│ ├── memory.c
│ ├── memory.h
├── lib # 通用类目录
│ ├── kernel
│ │ ├── bitmap.c
│ │ ├── bitmap.h
│ │ ├── io.h
│ │ ├── print.h
│ │ └── print.S
│ ├── stdint.h
│ ├── string.c
│ ├── string.h
│ └── user
├── tmp # 测试练习文件
├── bochsrc.disk # bochs参数文件
├── hd60M.img # 虚拟硬盘文件
├── log_bochs.txt # bochs日志文件
├── makefile
├── README.md
├── start_bochs.sh # 启动bochs脚本文件
└── xxd.sh