文件名称:OS67:类unix的玩具内核
文件大小:107KB
文件格式:ZIP
更新时间:2024-02-20 05:45:59
c kernel os osdev xv6
OS67 OS67是类unix的玩具内核,其中包含一些用户例程。 (基于x86) 建造要求 平台:Linux 牛油 鼻 海湾合作委员会 binutils(ld,objcopy) mkfs bochs 2.6.7+ 如何编译 git clone https://github.com/SilverRainZ/OS67.git cd OS67 make init # only for first time make fs # build root file system and user routines, root privilege required make # build kernel make run # run with bochs 系统调用列表 int _fork (); int _exit (); int _wait (); int _pipe ( int *fd); int _read ( int fd, char *addr, uint32_t n); int _kill ( int pid); int _exec ( char *