├── readme.md ├── 操作系统课堂实验 ├── 1 │ ├── CommandLine.txt │ ├── CommandList.txt │ ├── fate.bat │ └── main.cpp ├── 2 │ ├── experiment2.1.cpp │ ├── experiment2.3.cpp │ ├── experiment2.4.cpp │ └── experiment2.5.cpp ├── 3 │ ├── experiment3-1.cpp │ ├── experiment3-2.cpp │ └── experiment3-5.cpp └── 4 │ ├── experiment4.1.cpp │ ├── experiment4.2.cpp │ └── experiment4.3.cpp └── 操作系统课程设计 ├── 任务1 ├── Makefile ├── bochsrc ├── freedos.img ├── lib.inc ├── pm.img ├── pm.inc ├── pmtest9.asm └── pmtest9.com └── 任务2 ├── .DevFIFOWithBlock.ko.cmd ├── .DevFIFOWithBlock.mod.o.cmd ├── .DevFIFOWithBlock.o.cmd ├── .FIFOWithBlock.o.cmd ├── .cache.mk ├── .tmp_versions └── DevFIFOWithBlock.mod ├── DevFIFOWithBlock.ko ├── DevFIFOWithBlock.mod.c ├── DevFIFOWithBlock.mod.o ├── DevFIFOWithBlock.o ├── FIFOWithBlock.c ├── FIFOWithBlock.o ├── Makefile ├── Module.symvers ├── TestDemo ├── Makefile ├── readBlock.c ├── readBlock.com ├── readNonBlock.c ├── readNonBlock.com ├── write.c └── write.com └── modules.order /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/readme.md -------------------------------------------------------------------------------- /操作系统课堂实验/1/CommandLine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/1/CommandLine.txt -------------------------------------------------------------------------------- /操作系统课堂实验/1/CommandList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/1/CommandList.txt -------------------------------------------------------------------------------- /操作系统课堂实验/1/fate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/1/fate.bat -------------------------------------------------------------------------------- /操作系统课堂实验/1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/1/main.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/2/experiment2.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/2/experiment2.1.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/2/experiment2.3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/2/experiment2.3.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/2/experiment2.4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/2/experiment2.4.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/2/experiment2.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/2/experiment2.5.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/3/experiment3-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/3/experiment3-1.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/3/experiment3-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/3/experiment3-2.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/3/experiment3-5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/3/experiment3-5.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/4/experiment4.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/4/experiment4.1.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/4/experiment4.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/4/experiment4.2.cpp -------------------------------------------------------------------------------- /操作系统课堂实验/4/experiment4.3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课堂实验/4/experiment4.3.cpp -------------------------------------------------------------------------------- /操作系统课程设计/任务1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/Makefile -------------------------------------------------------------------------------- /操作系统课程设计/任务1/bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/bochsrc -------------------------------------------------------------------------------- /操作系统课程设计/任务1/freedos.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/freedos.img -------------------------------------------------------------------------------- /操作系统课程设计/任务1/lib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/lib.inc -------------------------------------------------------------------------------- /操作系统课程设计/任务1/pm.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/pm.img -------------------------------------------------------------------------------- /操作系统课程设计/任务1/pm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/pm.inc -------------------------------------------------------------------------------- /操作系统课程设计/任务1/pmtest9.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/pmtest9.asm -------------------------------------------------------------------------------- /操作系统课程设计/任务1/pmtest9.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务1/pmtest9.com -------------------------------------------------------------------------------- /操作系统课程设计/任务2/.DevFIFOWithBlock.ko.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/.DevFIFOWithBlock.ko.cmd -------------------------------------------------------------------------------- /操作系统课程设计/任务2/.DevFIFOWithBlock.mod.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/.DevFIFOWithBlock.mod.o.cmd -------------------------------------------------------------------------------- /操作系统课程设计/任务2/.DevFIFOWithBlock.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/.DevFIFOWithBlock.o.cmd -------------------------------------------------------------------------------- /操作系统课程设计/任务2/.FIFOWithBlock.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/.FIFOWithBlock.o.cmd -------------------------------------------------------------------------------- /操作系统课程设计/任务2/.cache.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/.cache.mk -------------------------------------------------------------------------------- /操作系统课程设计/任务2/.tmp_versions/DevFIFOWithBlock.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/.tmp_versions/DevFIFOWithBlock.mod -------------------------------------------------------------------------------- /操作系统课程设计/任务2/DevFIFOWithBlock.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/DevFIFOWithBlock.ko -------------------------------------------------------------------------------- /操作系统课程设计/任务2/DevFIFOWithBlock.mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/DevFIFOWithBlock.mod.c -------------------------------------------------------------------------------- /操作系统课程设计/任务2/DevFIFOWithBlock.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/DevFIFOWithBlock.mod.o -------------------------------------------------------------------------------- /操作系统课程设计/任务2/DevFIFOWithBlock.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/DevFIFOWithBlock.o -------------------------------------------------------------------------------- /操作系统课程设计/任务2/FIFOWithBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/FIFOWithBlock.c -------------------------------------------------------------------------------- /操作系统课程设计/任务2/FIFOWithBlock.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/FIFOWithBlock.o -------------------------------------------------------------------------------- /操作系统课程设计/任务2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/Makefile -------------------------------------------------------------------------------- /操作系统课程设计/任务2/Module.symvers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /操作系统课程设计/任务2/TestDemo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/TestDemo/Makefile -------------------------------------------------------------------------------- /操作系统课程设计/任务2/TestDemo/readBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/TestDemo/readBlock.c -------------------------------------------------------------------------------- /操作系统课程设计/任务2/TestDemo/readBlock.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/TestDemo/readBlock.com -------------------------------------------------------------------------------- /操作系统课程设计/任务2/TestDemo/readNonBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/TestDemo/readNonBlock.c -------------------------------------------------------------------------------- /操作系统课程设计/任务2/TestDemo/readNonBlock.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/TestDemo/readNonBlock.com -------------------------------------------------------------------------------- /操作系统课程设计/任务2/TestDemo/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/TestDemo/write.c -------------------------------------------------------------------------------- /操作系统课程设计/任务2/TestDemo/write.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/TestDemo/write.com -------------------------------------------------------------------------------- /操作系统课程设计/任务2/modules.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieyuschen/os-course/HEAD/操作系统课程设计/任务2/modules.order --------------------------------------------------------------------------------