├── README.md ├── lab1 ├── code │ ├── cal │ ├── cal.asm │ ├── cal.o │ ├── lib.asm │ └── 截图.png ├── osHomework │ ├── bochsrc │ └── boot.asm └── 实验要求 │ ├── 8086寻址方式和指令系统·一个最简操作系统的实现.pdf │ ├── nasm基本语法.pptx │ ├── 实验一要求.pdf │ ├── 操作系统实验简介.pptx │ └── 问答题.md ├── lab2 ├── .idea │ └── workspace.xml ├── lab2 │ ├── .idea │ │ ├── .gitignore │ │ ├── encodings.xml │ │ ├── lab2.iml │ │ ├── misc.xml │ │ └── modules.xml │ ├── CMakeLists.txt │ ├── a.img │ ├── catLong.png │ ├── catShort.png │ ├── cmake-build-debug │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.19.2 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeRCCompiler.cmake │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ ├── CMakeCCompilerId.exe │ │ │ │ │ └── CMakeCCompilerId.obj │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ ├── CMakeCXXCompilerId.exe │ │ │ │ │ └── CMakeCXXCompilerId.obj │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── clion-environment.txt │ │ │ ├── clion-log.txt │ │ │ ├── cmake.check_cache │ │ │ ├── lab2.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── code │ │ │ │ │ └── main.cpp.obj │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── embed.manifest │ │ │ │ ├── flags.make │ │ │ │ ├── intermediate.manifest │ │ │ │ ├── manifest.rc │ │ │ │ ├── manifest.res │ │ │ │ ├── objects1.rsp │ │ │ │ ├── progress.make │ │ │ │ └── vc140.pdb │ │ │ └── progress.marks │ │ ├── Makefile │ │ ├── Testing │ │ │ └── Temporary │ │ │ │ └── LastTest.log │ │ ├── cmake_install.cmake │ │ ├── lab2.cbp │ │ ├── lab2.exe │ │ ├── lab2.ilk │ │ └── lab2.pdb │ ├── code │ │ ├── main.cpp │ │ ├── makefile │ │ ├── my_print.asm │ │ ├── my_print.o │ │ └── output │ ├── ls-l.png │ └── ls.png └── 实验要求 │ ├── 2021 操作系统实验(二).pdf │ ├── FAT12.pptx │ ├── gcc+nasm.pptx │ ├── 实模式与保护模式.pdf │ └── 静态链接动态链接.pptx ├── lab3 ├── code │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── Makefile │ ├── a.img │ ├── bochsrc │ ├── boot │ │ ├── boot.asm │ │ ├── boot.bin │ │ ├── include │ │ │ ├── fat12hdr.inc │ │ │ ├── load.inc │ │ │ └── pm.inc │ │ ├── loader.asm │ │ └── loader.bin │ ├── include │ │ ├── console.h │ │ ├── const.h │ │ ├── global.h │ │ ├── keyboard.h │ │ ├── keymap.h │ │ ├── proc.h │ │ ├── protect.h │ │ ├── proto.h │ │ ├── sconst.inc │ │ ├── string.h │ │ ├── tty.h │ │ └── type.h │ ├── kernel.bin │ ├── kernel │ │ ├── clock.c │ │ ├── console.c │ │ ├── global.c │ │ ├── i8259.c │ │ ├── kernel.asm │ │ ├── keyboard.c │ │ ├── main.c │ │ ├── proc.c │ │ ├── protect.c │ │ ├── start.c │ │ ├── syscall.asm │ │ └── tty.c │ └── lib │ │ ├── klib.c │ │ ├── kliba.asm │ │ └── string.asm ├── 实验要求 │ ├── 2021 操作系统实验.pdf │ ├── 操作系统2021 IO.pdf │ ├── 操作系统2021 中断与异常.pptx │ └── 操作系统2021 实验三 实模式和保护模式下的中断.pptx └── 截图 │ ├── 回车和tab.png │ ├── 查找.png │ └── 输入.png └── lab4 ├── code ├── Makefile ├── a.img ├── bochsrc ├── boot │ ├── boot.asm │ ├── boot.bin │ ├── include │ │ ├── fat12hdr.inc │ │ ├── load.inc │ │ └── pm.inc │ ├── loader.asm │ └── loader.bin ├── include │ ├── const.h │ ├── global.h │ ├── proc.h │ ├── protect.h │ ├── proto.h │ ├── sconst.inc │ ├── string.h │ └── type.h ├── kernel.bin ├── kernel │ ├── clock.c │ ├── global.c │ ├── i8259.c │ ├── kernel.asm │ ├── keyboard.c │ ├── main.c │ ├── proc.c │ ├── protect.c │ ├── start.c │ └── syscall.asm └── lib │ ├── klib.c │ ├── kliba.asm │ └── string.asm ├── 实验要求 ├── 操作系统2021实验四要求.pdf └── 操作系统2021实验四问题小结.pdf ├── 截图 ├── 写优先.png ├── 读优先.png └── 防饿死.png ├── 说明文档.md └── 说明文档.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/README.md -------------------------------------------------------------------------------- /lab1/code/cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/code/cal -------------------------------------------------------------------------------- /lab1/code/cal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/code/cal.asm -------------------------------------------------------------------------------- /lab1/code/cal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/code/cal.o -------------------------------------------------------------------------------- /lab1/code/lib.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/code/lib.asm -------------------------------------------------------------------------------- /lab1/code/截图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/code/截图.png -------------------------------------------------------------------------------- /lab1/osHomework/bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/osHomework/bochsrc -------------------------------------------------------------------------------- /lab1/osHomework/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/osHomework/boot.asm -------------------------------------------------------------------------------- /lab1/实验要求/8086寻址方式和指令系统·一个最简操作系统的实现.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/实验要求/8086寻址方式和指令系统·一个最简操作系统的实现.pdf -------------------------------------------------------------------------------- /lab1/实验要求/nasm基本语法.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/实验要求/nasm基本语法.pptx -------------------------------------------------------------------------------- /lab1/实验要求/实验一要求.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/实验要求/实验一要求.pdf -------------------------------------------------------------------------------- /lab1/实验要求/操作系统实验简介.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/实验要求/操作系统实验简介.pptx -------------------------------------------------------------------------------- /lab1/实验要求/问答题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab1/实验要求/问答题.md -------------------------------------------------------------------------------- /lab2/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/.idea/workspace.xml -------------------------------------------------------------------------------- /lab2/lab2/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/.idea/.gitignore -------------------------------------------------------------------------------- /lab2/lab2/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/.idea/encodings.xml -------------------------------------------------------------------------------- /lab2/lab2/.idea/lab2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/.idea/lab2.iml -------------------------------------------------------------------------------- /lab2/lab2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/.idea/misc.xml -------------------------------------------------------------------------------- /lab2/lab2/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/.idea/modules.xml -------------------------------------------------------------------------------- /lab2/lab2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/CMakeLists.txt -------------------------------------------------------------------------------- /lab2/lab2/a.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/a.img -------------------------------------------------------------------------------- /lab2/lab2/catLong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/catLong.png -------------------------------------------------------------------------------- /lab2/lab2/catShort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/catShort.png -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeCache.txt -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeRCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeRCCompiler.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.exe -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdC/CMakeCCompilerId.obj -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.exe -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/3.19.2/CompilerIdCXX/CMakeCXXCompilerId.obj -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/clion-environment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/clion-environment.txt -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/clion-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/clion-log.txt -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/CXX.includecache -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/DependInfo.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/build.make -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/code/main.cpp.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/code/main.cpp.obj -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/depend.internal -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/depend.make -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/embed.manifest -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/flags.make -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/intermediate.manifest -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/manifest.rc -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/manifest.res -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/objects1.rsp: -------------------------------------------------------------------------------- 1 | CMakeFiles/lab2.dir/code/main.cpp.obj 2 | -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/progress.make -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/CMakeFiles/lab2.dir/vc140.pdb -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/Makefile -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/Testing/Temporary/LastTest.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/Testing/Temporary/LastTest.log -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/cmake_install.cmake -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/lab2.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/lab2.cbp -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/lab2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/lab2.exe -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/lab2.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/lab2.ilk -------------------------------------------------------------------------------- /lab2/lab2/cmake-build-debug/lab2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/cmake-build-debug/lab2.pdb -------------------------------------------------------------------------------- /lab2/lab2/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/code/main.cpp -------------------------------------------------------------------------------- /lab2/lab2/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/code/makefile -------------------------------------------------------------------------------- /lab2/lab2/code/my_print.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/code/my_print.asm -------------------------------------------------------------------------------- /lab2/lab2/code/my_print.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/code/my_print.o -------------------------------------------------------------------------------- /lab2/lab2/code/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/code/output -------------------------------------------------------------------------------- /lab2/lab2/ls-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/ls-l.png -------------------------------------------------------------------------------- /lab2/lab2/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/lab2/ls.png -------------------------------------------------------------------------------- /lab2/实验要求/2021 操作系统实验(二).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/实验要求/2021 操作系统实验(二).pdf -------------------------------------------------------------------------------- /lab2/实验要求/FAT12.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/实验要求/FAT12.pptx -------------------------------------------------------------------------------- /lab2/实验要求/gcc+nasm.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/实验要求/gcc+nasm.pptx -------------------------------------------------------------------------------- /lab2/实验要求/实模式与保护模式.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/实验要求/实模式与保护模式.pdf -------------------------------------------------------------------------------- /lab2/实验要求/静态链接动态链接.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab2/实验要求/静态链接动态链接.pptx -------------------------------------------------------------------------------- /lab3/code/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /lab3/code/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/.vscode/settings.json -------------------------------------------------------------------------------- /lab3/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/Makefile -------------------------------------------------------------------------------- /lab3/code/a.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/a.img -------------------------------------------------------------------------------- /lab3/code/bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/bochsrc -------------------------------------------------------------------------------- /lab3/code/boot/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/boot/boot.asm -------------------------------------------------------------------------------- /lab3/code/boot/boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/boot/boot.bin -------------------------------------------------------------------------------- /lab3/code/boot/include/fat12hdr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/boot/include/fat12hdr.inc -------------------------------------------------------------------------------- /lab3/code/boot/include/load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/boot/include/load.inc -------------------------------------------------------------------------------- /lab3/code/boot/include/pm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/boot/include/pm.inc -------------------------------------------------------------------------------- /lab3/code/boot/loader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/boot/loader.asm -------------------------------------------------------------------------------- /lab3/code/boot/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/boot/loader.bin -------------------------------------------------------------------------------- /lab3/code/include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/console.h -------------------------------------------------------------------------------- /lab3/code/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/const.h -------------------------------------------------------------------------------- /lab3/code/include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/global.h -------------------------------------------------------------------------------- /lab3/code/include/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/keyboard.h -------------------------------------------------------------------------------- /lab3/code/include/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/keymap.h -------------------------------------------------------------------------------- /lab3/code/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/proc.h -------------------------------------------------------------------------------- /lab3/code/include/protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/protect.h -------------------------------------------------------------------------------- /lab3/code/include/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/proto.h -------------------------------------------------------------------------------- /lab3/code/include/sconst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/sconst.inc -------------------------------------------------------------------------------- /lab3/code/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/string.h -------------------------------------------------------------------------------- /lab3/code/include/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/tty.h -------------------------------------------------------------------------------- /lab3/code/include/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/include/type.h -------------------------------------------------------------------------------- /lab3/code/kernel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel.bin -------------------------------------------------------------------------------- /lab3/code/kernel/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/clock.c -------------------------------------------------------------------------------- /lab3/code/kernel/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/console.c -------------------------------------------------------------------------------- /lab3/code/kernel/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/global.c -------------------------------------------------------------------------------- /lab3/code/kernel/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/i8259.c -------------------------------------------------------------------------------- /lab3/code/kernel/kernel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/kernel.asm -------------------------------------------------------------------------------- /lab3/code/kernel/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/keyboard.c -------------------------------------------------------------------------------- /lab3/code/kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/main.c -------------------------------------------------------------------------------- /lab3/code/kernel/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/proc.c -------------------------------------------------------------------------------- /lab3/code/kernel/protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/protect.c -------------------------------------------------------------------------------- /lab3/code/kernel/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/start.c -------------------------------------------------------------------------------- /lab3/code/kernel/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/syscall.asm -------------------------------------------------------------------------------- /lab3/code/kernel/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/kernel/tty.c -------------------------------------------------------------------------------- /lab3/code/lib/klib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/lib/klib.c -------------------------------------------------------------------------------- /lab3/code/lib/kliba.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/lib/kliba.asm -------------------------------------------------------------------------------- /lab3/code/lib/string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/code/lib/string.asm -------------------------------------------------------------------------------- /lab3/实验要求/2021 操作系统实验.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/实验要求/2021 操作系统实验.pdf -------------------------------------------------------------------------------- /lab3/实验要求/操作系统2021 IO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/实验要求/操作系统2021 IO.pdf -------------------------------------------------------------------------------- /lab3/实验要求/操作系统2021 中断与异常.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/实验要求/操作系统2021 中断与异常.pptx -------------------------------------------------------------------------------- /lab3/实验要求/操作系统2021 实验三 实模式和保护模式下的中断.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/实验要求/操作系统2021 实验三 实模式和保护模式下的中断.pptx -------------------------------------------------------------------------------- /lab3/截图/回车和tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/截图/回车和tab.png -------------------------------------------------------------------------------- /lab3/截图/查找.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/截图/查找.png -------------------------------------------------------------------------------- /lab3/截图/输入.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab3/截图/输入.png -------------------------------------------------------------------------------- /lab4/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/Makefile -------------------------------------------------------------------------------- /lab4/code/a.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/a.img -------------------------------------------------------------------------------- /lab4/code/bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/bochsrc -------------------------------------------------------------------------------- /lab4/code/boot/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/boot/boot.asm -------------------------------------------------------------------------------- /lab4/code/boot/boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/boot/boot.bin -------------------------------------------------------------------------------- /lab4/code/boot/include/fat12hdr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/boot/include/fat12hdr.inc -------------------------------------------------------------------------------- /lab4/code/boot/include/load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/boot/include/load.inc -------------------------------------------------------------------------------- /lab4/code/boot/include/pm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/boot/include/pm.inc -------------------------------------------------------------------------------- /lab4/code/boot/loader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/boot/loader.asm -------------------------------------------------------------------------------- /lab4/code/boot/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/boot/loader.bin -------------------------------------------------------------------------------- /lab4/code/include/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/const.h -------------------------------------------------------------------------------- /lab4/code/include/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/global.h -------------------------------------------------------------------------------- /lab4/code/include/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/proc.h -------------------------------------------------------------------------------- /lab4/code/include/protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/protect.h -------------------------------------------------------------------------------- /lab4/code/include/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/proto.h -------------------------------------------------------------------------------- /lab4/code/include/sconst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/sconst.inc -------------------------------------------------------------------------------- /lab4/code/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/string.h -------------------------------------------------------------------------------- /lab4/code/include/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/include/type.h -------------------------------------------------------------------------------- /lab4/code/kernel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel.bin -------------------------------------------------------------------------------- /lab4/code/kernel/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/clock.c -------------------------------------------------------------------------------- /lab4/code/kernel/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/global.c -------------------------------------------------------------------------------- /lab4/code/kernel/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/i8259.c -------------------------------------------------------------------------------- /lab4/code/kernel/kernel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/kernel.asm -------------------------------------------------------------------------------- /lab4/code/kernel/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/keyboard.c -------------------------------------------------------------------------------- /lab4/code/kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/main.c -------------------------------------------------------------------------------- /lab4/code/kernel/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/proc.c -------------------------------------------------------------------------------- /lab4/code/kernel/protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/protect.c -------------------------------------------------------------------------------- /lab4/code/kernel/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/start.c -------------------------------------------------------------------------------- /lab4/code/kernel/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/kernel/syscall.asm -------------------------------------------------------------------------------- /lab4/code/lib/klib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/lib/klib.c -------------------------------------------------------------------------------- /lab4/code/lib/kliba.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/lib/kliba.asm -------------------------------------------------------------------------------- /lab4/code/lib/string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/code/lib/string.asm -------------------------------------------------------------------------------- /lab4/实验要求/操作系统2021实验四要求.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/实验要求/操作系统2021实验四要求.pdf -------------------------------------------------------------------------------- /lab4/实验要求/操作系统2021实验四问题小结.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/实验要求/操作系统2021实验四问题小结.pdf -------------------------------------------------------------------------------- /lab4/截图/写优先.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/截图/写优先.png -------------------------------------------------------------------------------- /lab4/截图/读优先.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/截图/读优先.png -------------------------------------------------------------------------------- /lab4/截图/防饿死.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/截图/防饿死.png -------------------------------------------------------------------------------- /lab4/说明文档.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/说明文档.md -------------------------------------------------------------------------------- /lab4/说明文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rain-xyy/OSLAB-NJUSE/HEAD/lab4/说明文档.pdf --------------------------------------------------------------------------------