├── .gitignore ├── Homework ├── h1 │ ├── README.md │ ├── WuQinhang h1.md │ ├── WuQinhang h1.pdf │ ├── ex5.sh │ └── h1.pdf ├── h2 │ ├── WuQinhang h2.assets │ │ ├── image-20201002215645041.png │ │ ├── image-20201003123148830.png │ │ └── image-20201003123158530.png │ ├── WuQinhang h2.md │ ├── WuQinhang h2.pdf │ └── h2.pdf ├── h3 │ ├── README.md │ ├── WuQinhang h3.md │ ├── WuQinhang h3.pdf │ ├── ex2.c │ ├── h3.pdf │ ├── list.h │ ├── rand_char.txt │ ├── rand_double.txt │ ├── rand_int.txt │ └── sample io │ │ ├── dec_char.txt │ │ ├── dec_int.txt │ │ ├── inc_char.txt │ │ ├── inc_double.txt │ │ ├── inc_int.txt │ │ ├── rand_char.txt │ │ ├── rand_double.txt │ │ └── rand_int.txt ├── h4 │ ├── WuQinhang h4.md │ ├── WuQinhang h4.pdf │ ├── cthread.c │ ├── ex3.out │ ├── ex3.sh │ ├── ex3_driver.sh │ ├── ex3_fix.sh │ └── h4.pdf ├── h5 │ ├── WuQinhang h5.md │ ├── WuQinhang h5.pdf │ ├── banker.cpp │ └── h5.pdf ├── h6 │ ├── WuQinhang h6.assets │ │ ├── fetch.php │ │ ├── image-20201115135008553.png │ │ ├── image-20201115135836307.png │ │ ├── image-20201115142717892.png │ │ ├── image-20201115165123802.png │ │ ├── image-20201115165412020.png │ │ ├── image-20201115165513888.png │ │ ├── image-20201115165538838.png │ │ ├── image-20201115191311801.png │ │ └── image-20201115193213152.png │ ├── WuQinhang h6.md │ ├── WuQinhang h6.pdf │ ├── h6.pdf │ ├── ref │ │ ├── MinixVM An Implementation of Virtual Memory in Minix 3.pdf │ │ ├── meltdown.pdf │ │ └── spectre.pdf │ └── thrashing.c ├── h7 │ ├── WuQinhang h7.assets │ │ ├── image-20201124204146887.png │ │ └── image-20201124235256771.png │ ├── WuQinhang h7.md │ ├── WuQinhang h7.pdf │ ├── getnchpid.c │ └── h7.pdf └── h8 │ ├── WuQinhang h8.assets │ ├── image-20201203211631640.png │ ├── image-20201203211632820.png │ ├── image-20201206174445940.png │ ├── image-20201206174537343.png │ └── image-20201206181718844.png │ ├── WuQinhang h8.md │ ├── WuQinhang h8.pdf │ └── h8.pdf ├── LICENSE ├── Lab ├── Lab 1 │ ├── PS3.sh │ ├── WuQinhang Lab1 Report.md │ ├── WuQinhang Lab1 Report.pdf │ ├── game.sh │ ├── img │ │ ├── BIOS.jpg │ │ ├── CPU.png │ │ ├── PCIslot.jpg │ │ ├── PCPowerSupply.jpg │ │ ├── RAM.jpg │ │ ├── SATASocket.jpg │ │ ├── battery.jpg │ │ ├── hardDiskDrive.jpg │ │ ├── motherboard.jpg │ │ ├── northBridge.jpg │ │ ├── northWithSouthBridge.jpg │ │ └── opticalDiskDrive.jpg │ └── l1.pdf ├── Lab 10 │ ├── Lab10 Report.assets │ │ └── image-20201206203640731.png │ ├── Lab10 Report.md │ ├── Lab10 Report.pdf │ └── l10.pdf ├── Lab 11 │ ├── Lab11 Report.md │ ├── Lab11 Report.pdf │ ├── README.md │ └── l11.pdf ├── Lab 2 │ ├── README.md │ ├── WuQinhang Lab2 Report.md │ ├── WuQinhang Lab2 Report.pdf │ └── l2.pdf ├── Lab 3 │ ├── WuQinhang Lab3 Report.assets │ │ ├── image-20201002162724556.png │ │ └── image-20201002162733229.png │ ├── WuQinhang Lab3 Report.md │ ├── WuQinhang Lab3 Report.pdf │ ├── air.sh │ ├── ip.sh │ └── l3.pdf ├── Lab 4 │ ├── WuQinhang Lab4 Report.md │ ├── WuQinhang Lab4 Report.pdf │ ├── gdb-refcard.pdf │ ├── l4.pdf │ └── lab4.log ├── Lab 5 │ ├── WuQinhang Lab5 Report.md │ ├── WuQinhang Lab5 Report.pdf │ ├── code │ │ ├── Makefile │ │ ├── dec_int.txt │ │ ├── driver_cmd.c │ │ ├── driver_menu.c │ │ ├── list.c │ │ ├── list.h │ │ ├── rand_char.txt │ │ ├── rand_double.txt │ │ ├── rand_int.txt │ │ ├── sort.c │ │ ├── sort.h │ │ ├── ui.c │ │ └── ui.h │ ├── l5.pdf │ ├── lab5_dlist.c │ └── lab5_dlist.h ├── Lab 6 │ ├── Makefile │ ├── WuQinhang Lab6 Report.assets │ │ ├── image-20201107004344572.png │ │ ├── image-20201108231629114.png │ │ └── image-20201108232651033.png │ ├── WuQinhang Lab6 Report.md │ ├── WuQinhang Lab6 Report.pdf │ ├── cmplx-sort │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── src-kernel │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── main.c │ │ │ ├── plugin-api.h │ │ │ ├── plugin.c │ │ │ └── plugin.h │ │ ├── src-plugin-csv │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── ui.c │ │ │ └── ui.h │ │ ├── src-plugin-txt │ │ │ ├── sort.c │ │ │ ├── sort.h │ │ │ ├── ui.c │ │ │ └── ui.h │ │ └── testcases │ │ │ ├── dec_int.txt │ │ │ ├── rand_char.txt │ │ │ ├── rand_double.txt │ │ │ ├── rand_int.txt │ │ │ └── test.csv │ ├── l6.pdf │ └── zathura-txt │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── meson.build │ │ └── zathura-txt │ │ ├── plugin.c │ │ └── plugin.h ├── Lab 7 │ ├── Lab7 Report.md │ ├── Lab7 Report.pdf │ ├── dadfs │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Lab7 Report.assets │ │ │ └── image-20201119181410704.png │ │ ├── Lab7 Report.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── base.c │ │ ├── base.h │ │ ├── mkfs-dadfs.c │ │ ├── sblock.h │ │ └── workflow.sh │ └── l7.pdf ├── Lab 8 │ ├── .gitignore │ ├── Lab8 Report.md │ ├── Lab8 Report.pdf │ ├── l8.pdf │ ├── ref │ │ └── MinixVM An Implementation of Virtual Memory in Minix 3.pdf │ ├── src │ │ ├── cache.c │ │ └── region.c │ └── workflow.sh └── Lab 9 │ ├── .gitignore │ ├── Lab9 Report.assets │ ├── image-20201130042205853.png │ ├── image-20201130164611617.png │ ├── image-20201130173725835.png │ ├── image-20201130173758323.png │ └── image-20201130173839284.png │ ├── Lab9 Report.md │ ├── Lab9 Report.pdf │ ├── Lab9_TimShi.docx │ ├── dice │ ├── Makefile │ ├── dice.c │ ├── dice.h │ └── workflow.sh │ └── l9.pdf ├── Project ├── p1-compile-guide.pdf ├── p1-specifications.pdf ├── p1.pdf ├── p2.pdf └── p3.pdf ├── README.md ├── eBooks ├── Modern Operating Systems-4nd-A.Tanenbaum.pdf ├── Operating System Concepts-2004-Instructor's Manual.pdf └── Operating Systems-Three Easy Pieces-2020.pdf ├── extra ├── firefox_os_story.pdf ├── linux_story.pdf ├── minix_contribution.pdf └── minix_intro.pdf └── slides ├── c0.pdf ├── c1.pdf ├── c10.pdf ├── c2.pdf ├── c3.pdf ├── c4.pdf ├── c5.pdf ├── c6.pdf ├── c7.pdf ├── c8.pdf ├── c9.pdf ├── ve482-p.pdf └── ve482.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/.gitignore -------------------------------------------------------------------------------- /Homework/h1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h1/README.md -------------------------------------------------------------------------------- /Homework/h1/WuQinhang h1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h1/WuQinhang h1.md -------------------------------------------------------------------------------- /Homework/h1/WuQinhang h1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h1/WuQinhang h1.pdf -------------------------------------------------------------------------------- /Homework/h1/ex5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h1/ex5.sh -------------------------------------------------------------------------------- /Homework/h1/h1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h1/h1.pdf -------------------------------------------------------------------------------- /Homework/h2/WuQinhang h2.assets/image-20201002215645041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h2/WuQinhang h2.assets/image-20201002215645041.png -------------------------------------------------------------------------------- /Homework/h2/WuQinhang h2.assets/image-20201003123148830.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h2/WuQinhang h2.assets/image-20201003123148830.png -------------------------------------------------------------------------------- /Homework/h2/WuQinhang h2.assets/image-20201003123158530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h2/WuQinhang h2.assets/image-20201003123158530.png -------------------------------------------------------------------------------- /Homework/h2/WuQinhang h2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h2/WuQinhang h2.md -------------------------------------------------------------------------------- /Homework/h2/WuQinhang h2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h2/WuQinhang h2.pdf -------------------------------------------------------------------------------- /Homework/h2/h2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h2/h2.pdf -------------------------------------------------------------------------------- /Homework/h3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/README.md -------------------------------------------------------------------------------- /Homework/h3/WuQinhang h3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/WuQinhang h3.md -------------------------------------------------------------------------------- /Homework/h3/WuQinhang h3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/WuQinhang h3.pdf -------------------------------------------------------------------------------- /Homework/h3/ex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/ex2.c -------------------------------------------------------------------------------- /Homework/h3/h3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/h3.pdf -------------------------------------------------------------------------------- /Homework/h3/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/list.h -------------------------------------------------------------------------------- /Homework/h3/rand_char.txt: -------------------------------------------------------------------------------- 1 | a=A 2 | b=Z 3 | c=D 4 | d=T 5 | s=F 6 | -------------------------------------------------------------------------------- /Homework/h3/rand_double.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/rand_double.txt -------------------------------------------------------------------------------- /Homework/h3/rand_int.txt: -------------------------------------------------------------------------------- 1 | a=9 2 | b=7 3 | c=6 4 | d=5 5 | s=3 6 | -------------------------------------------------------------------------------- /Homework/h3/sample io/dec_char.txt: -------------------------------------------------------------------------------- 1 | b=Z 2 | d=T 3 | s=F 4 | c=D 5 | a=A 6 | -------------------------------------------------------------------------------- /Homework/h3/sample io/dec_int.txt: -------------------------------------------------------------------------------- 1 | a=9 2 | b=7 3 | c=6 4 | d=5 5 | s=3 6 | -------------------------------------------------------------------------------- /Homework/h3/sample io/inc_char.txt: -------------------------------------------------------------------------------- 1 | a=A 2 | c=D 3 | s=F 4 | d=T 5 | b=Z 6 | -------------------------------------------------------------------------------- /Homework/h3/sample io/inc_double.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/sample io/inc_double.txt -------------------------------------------------------------------------------- /Homework/h3/sample io/inc_int.txt: -------------------------------------------------------------------------------- 1 | s=3 2 | d=5 3 | c=6 4 | b=7 5 | a=9 6 | -------------------------------------------------------------------------------- /Homework/h3/sample io/rand_char.txt: -------------------------------------------------------------------------------- 1 | a=A 2 | b=Z 3 | c=D 4 | d=T 5 | s=F 6 | -------------------------------------------------------------------------------- /Homework/h3/sample io/rand_double.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h3/sample io/rand_double.txt -------------------------------------------------------------------------------- /Homework/h3/sample io/rand_int.txt: -------------------------------------------------------------------------------- 1 | a=9 2 | b=7 3 | c=6 4 | d=5 5 | s=3 6 | -------------------------------------------------------------------------------- /Homework/h4/WuQinhang h4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/WuQinhang h4.md -------------------------------------------------------------------------------- /Homework/h4/WuQinhang h4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/WuQinhang h4.pdf -------------------------------------------------------------------------------- /Homework/h4/cthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/cthread.c -------------------------------------------------------------------------------- /Homework/h4/ex3.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/ex3.out -------------------------------------------------------------------------------- /Homework/h4/ex3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/ex3.sh -------------------------------------------------------------------------------- /Homework/h4/ex3_driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/ex3_driver.sh -------------------------------------------------------------------------------- /Homework/h4/ex3_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/ex3_fix.sh -------------------------------------------------------------------------------- /Homework/h4/h4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h4/h4.pdf -------------------------------------------------------------------------------- /Homework/h5/WuQinhang h5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h5/WuQinhang h5.md -------------------------------------------------------------------------------- /Homework/h5/WuQinhang h5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h5/WuQinhang h5.pdf -------------------------------------------------------------------------------- /Homework/h5/banker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h5/banker.cpp -------------------------------------------------------------------------------- /Homework/h5/h5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h5/h5.pdf -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/fetch.php -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115135008553.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115135008553.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115135836307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115135836307.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115142717892.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115142717892.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115165123802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115165123802.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115165412020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115165412020.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115165513888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115165513888.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115165538838.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115165538838.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115191311801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115191311801.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.assets/image-20201115193213152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.assets/image-20201115193213152.png -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.md -------------------------------------------------------------------------------- /Homework/h6/WuQinhang h6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/WuQinhang h6.pdf -------------------------------------------------------------------------------- /Homework/h6/h6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/h6.pdf -------------------------------------------------------------------------------- /Homework/h6/ref/MinixVM An Implementation of Virtual Memory in Minix 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/ref/MinixVM An Implementation of Virtual Memory in Minix 3.pdf -------------------------------------------------------------------------------- /Homework/h6/ref/meltdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/ref/meltdown.pdf -------------------------------------------------------------------------------- /Homework/h6/ref/spectre.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/ref/spectre.pdf -------------------------------------------------------------------------------- /Homework/h6/thrashing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h6/thrashing.c -------------------------------------------------------------------------------- /Homework/h7/WuQinhang h7.assets/image-20201124204146887.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h7/WuQinhang h7.assets/image-20201124204146887.png -------------------------------------------------------------------------------- /Homework/h7/WuQinhang h7.assets/image-20201124235256771.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h7/WuQinhang h7.assets/image-20201124235256771.png -------------------------------------------------------------------------------- /Homework/h7/WuQinhang h7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h7/WuQinhang h7.md -------------------------------------------------------------------------------- /Homework/h7/WuQinhang h7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h7/WuQinhang h7.pdf -------------------------------------------------------------------------------- /Homework/h7/getnchpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h7/getnchpid.c -------------------------------------------------------------------------------- /Homework/h7/h7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h7/h7.pdf -------------------------------------------------------------------------------- /Homework/h8/WuQinhang h8.assets/image-20201203211631640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/WuQinhang h8.assets/image-20201203211631640.png -------------------------------------------------------------------------------- /Homework/h8/WuQinhang h8.assets/image-20201203211632820.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/WuQinhang h8.assets/image-20201203211632820.png -------------------------------------------------------------------------------- /Homework/h8/WuQinhang h8.assets/image-20201206174445940.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/WuQinhang h8.assets/image-20201206174445940.png -------------------------------------------------------------------------------- /Homework/h8/WuQinhang h8.assets/image-20201206174537343.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/WuQinhang h8.assets/image-20201206174537343.png -------------------------------------------------------------------------------- /Homework/h8/WuQinhang h8.assets/image-20201206181718844.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/WuQinhang h8.assets/image-20201206181718844.png -------------------------------------------------------------------------------- /Homework/h8/WuQinhang h8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/WuQinhang h8.md -------------------------------------------------------------------------------- /Homework/h8/WuQinhang h8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/WuQinhang h8.pdf -------------------------------------------------------------------------------- /Homework/h8/h8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Homework/h8/h8.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/LICENSE -------------------------------------------------------------------------------- /Lab/Lab 1/PS3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/PS3.sh -------------------------------------------------------------------------------- /Lab/Lab 1/WuQinhang Lab1 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/WuQinhang Lab1 Report.md -------------------------------------------------------------------------------- /Lab/Lab 1/WuQinhang Lab1 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/WuQinhang Lab1 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 1/game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/game.sh -------------------------------------------------------------------------------- /Lab/Lab 1/img/BIOS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/BIOS.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/CPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/CPU.png -------------------------------------------------------------------------------- /Lab/Lab 1/img/PCIslot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/PCIslot.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/PCPowerSupply.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/PCPowerSupply.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/RAM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/RAM.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/SATASocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/SATASocket.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/battery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/battery.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/hardDiskDrive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/hardDiskDrive.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/motherboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/motherboard.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/northBridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/northBridge.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/northWithSouthBridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/northWithSouthBridge.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/img/opticalDiskDrive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/img/opticalDiskDrive.jpg -------------------------------------------------------------------------------- /Lab/Lab 1/l1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 1/l1.pdf -------------------------------------------------------------------------------- /Lab/Lab 10/Lab10 Report.assets/image-20201206203640731.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 10/Lab10 Report.assets/image-20201206203640731.png -------------------------------------------------------------------------------- /Lab/Lab 10/Lab10 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 10/Lab10 Report.md -------------------------------------------------------------------------------- /Lab/Lab 10/Lab10 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 10/Lab10 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 10/l10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 10/l10.pdf -------------------------------------------------------------------------------- /Lab/Lab 11/Lab11 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 11/Lab11 Report.md -------------------------------------------------------------------------------- /Lab/Lab 11/Lab11 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 11/Lab11 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 11/README.md: -------------------------------------------------------------------------------- 1 | Note: sensitive file related with lemon-db omitted here. -------------------------------------------------------------------------------- /Lab/Lab 11/l11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 11/l11.pdf -------------------------------------------------------------------------------- /Lab/Lab 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 2/README.md -------------------------------------------------------------------------------- /Lab/Lab 2/WuQinhang Lab2 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 2/WuQinhang Lab2 Report.md -------------------------------------------------------------------------------- /Lab/Lab 2/WuQinhang Lab2 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 2/WuQinhang Lab2 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 2/l2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 2/l2.pdf -------------------------------------------------------------------------------- /Lab/Lab 3/WuQinhang Lab3 Report.assets/image-20201002162724556.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 3/WuQinhang Lab3 Report.assets/image-20201002162724556.png -------------------------------------------------------------------------------- /Lab/Lab 3/WuQinhang Lab3 Report.assets/image-20201002162733229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 3/WuQinhang Lab3 Report.assets/image-20201002162733229.png -------------------------------------------------------------------------------- /Lab/Lab 3/WuQinhang Lab3 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 3/WuQinhang Lab3 Report.md -------------------------------------------------------------------------------- /Lab/Lab 3/WuQinhang Lab3 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 3/WuQinhang Lab3 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 3/air.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 3/air.sh -------------------------------------------------------------------------------- /Lab/Lab 3/ip.sh: -------------------------------------------------------------------------------- 1 | ifconfig | awk -e '{for(i=1;i<=NF;i++){ if($i=="inet"){print $(i+1)} } }' 2 | -------------------------------------------------------------------------------- /Lab/Lab 3/l3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 3/l3.pdf -------------------------------------------------------------------------------- /Lab/Lab 4/WuQinhang Lab4 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 4/WuQinhang Lab4 Report.md -------------------------------------------------------------------------------- /Lab/Lab 4/WuQinhang Lab4 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 4/WuQinhang Lab4 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 4/gdb-refcard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 4/gdb-refcard.pdf -------------------------------------------------------------------------------- /Lab/Lab 4/l4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 4/l4.pdf -------------------------------------------------------------------------------- /Lab/Lab 4/lab4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 4/lab4.log -------------------------------------------------------------------------------- /Lab/Lab 5/WuQinhang Lab5 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/WuQinhang Lab5 Report.md -------------------------------------------------------------------------------- /Lab/Lab 5/WuQinhang Lab5 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/WuQinhang Lab5 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 5/code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/Makefile -------------------------------------------------------------------------------- /Lab/Lab 5/code/dec_int.txt: -------------------------------------------------------------------------------- 1 | a=9 2 | b=7 3 | c=6 4 | d=5 5 | s=3 6 | -------------------------------------------------------------------------------- /Lab/Lab 5/code/driver_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/driver_cmd.c -------------------------------------------------------------------------------- /Lab/Lab 5/code/driver_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/driver_menu.c -------------------------------------------------------------------------------- /Lab/Lab 5/code/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/list.c -------------------------------------------------------------------------------- /Lab/Lab 5/code/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/list.h -------------------------------------------------------------------------------- /Lab/Lab 5/code/rand_char.txt: -------------------------------------------------------------------------------- 1 | a=A 2 | b=Z 3 | c=D 4 | d=T 5 | s=F 6 | -------------------------------------------------------------------------------- /Lab/Lab 5/code/rand_double.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/rand_double.txt -------------------------------------------------------------------------------- /Lab/Lab 5/code/rand_int.txt: -------------------------------------------------------------------------------- 1 | a=9 2 | b=7 3 | c=6 4 | d=5 5 | s=3 6 | -------------------------------------------------------------------------------- /Lab/Lab 5/code/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/sort.c -------------------------------------------------------------------------------- /Lab/Lab 5/code/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/sort.h -------------------------------------------------------------------------------- /Lab/Lab 5/code/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/ui.c -------------------------------------------------------------------------------- /Lab/Lab 5/code/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/code/ui.h -------------------------------------------------------------------------------- /Lab/Lab 5/l5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/l5.pdf -------------------------------------------------------------------------------- /Lab/Lab 5/lab5_dlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/lab5_dlist.c -------------------------------------------------------------------------------- /Lab/Lab 5/lab5_dlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 5/lab5_dlist.h -------------------------------------------------------------------------------- /Lab/Lab 6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/Makefile -------------------------------------------------------------------------------- /Lab/Lab 6/WuQinhang Lab6 Report.assets/image-20201107004344572.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/WuQinhang Lab6 Report.assets/image-20201107004344572.png -------------------------------------------------------------------------------- /Lab/Lab 6/WuQinhang Lab6 Report.assets/image-20201108231629114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/WuQinhang Lab6 Report.assets/image-20201108231629114.png -------------------------------------------------------------------------------- /Lab/Lab 6/WuQinhang Lab6 Report.assets/image-20201108232651033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/WuQinhang Lab6 Report.assets/image-20201108232651033.png -------------------------------------------------------------------------------- /Lab/Lab 6/WuQinhang Lab6 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/WuQinhang Lab6 Report.md -------------------------------------------------------------------------------- /Lab/Lab 6/WuQinhang Lab6 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/WuQinhang Lab6 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .vscode 3 | -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/Makefile -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/README.md -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-kernel/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-kernel/list.c -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-kernel/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-kernel/list.h -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-kernel/main.c -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-kernel/plugin-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-kernel/plugin-api.h -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-kernel/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-kernel/plugin.c -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-kernel/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-kernel/plugin.h -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-csv/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-csv/sort.c -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-csv/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-csv/sort.h -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-csv/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-csv/ui.c -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-csv/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-csv/ui.h -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-txt/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-txt/sort.c -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-txt/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-txt/sort.h -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-txt/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-txt/ui.c -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/src-plugin-txt/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/src-plugin-txt/ui.h -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/testcases/dec_int.txt: -------------------------------------------------------------------------------- 1 | a=9 2 | b=7 3 | c=6 4 | d=5 5 | s=3 6 | -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/testcases/rand_char.txt: -------------------------------------------------------------------------------- 1 | a=A 2 | b=Z 3 | c=D 4 | d=T 5 | s=F 6 | -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/testcases/rand_double.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/testcases/rand_double.txt -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/testcases/rand_int.txt: -------------------------------------------------------------------------------- 1 | a=9 2 | b=7 3 | c=6 4 | d=5 5 | s=3 6 | -------------------------------------------------------------------------------- /Lab/Lab 6/cmplx-sort/testcases/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/cmplx-sort/testcases/test.csv -------------------------------------------------------------------------------- /Lab/Lab 6/l6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/l6.pdf -------------------------------------------------------------------------------- /Lab/Lab 6/zathura-txt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/zathura-txt/.gitignore -------------------------------------------------------------------------------- /Lab/Lab 6/zathura-txt/AUTHORS: -------------------------------------------------------------------------------- 1 | zathura-txt is written by: 2 | 3 | Qinhang Wu 4 | -------------------------------------------------------------------------------- /Lab/Lab 6/zathura-txt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/zathura-txt/LICENSE -------------------------------------------------------------------------------- /Lab/Lab 6/zathura-txt/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/zathura-txt/meson.build -------------------------------------------------------------------------------- /Lab/Lab 6/zathura-txt/zathura-txt/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/zathura-txt/zathura-txt/plugin.c -------------------------------------------------------------------------------- /Lab/Lab 6/zathura-txt/zathura-txt/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 6/zathura-txt/zathura-txt/plugin.h -------------------------------------------------------------------------------- /Lab/Lab 7/Lab7 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/Lab7 Report.md -------------------------------------------------------------------------------- /Lab/Lab 7/Lab7 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/Lab7 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/.gitignore -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/LICENSE -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/Lab7 Report.assets/image-20201119181410704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/Lab7 Report.assets/image-20201119181410704.png -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/Lab7 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/Lab7 Report.md -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/Makefile -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/README.md -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/base.c -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/base.h -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/mkfs-dadfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/mkfs-dadfs.c -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/sblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/sblock.h -------------------------------------------------------------------------------- /Lab/Lab 7/dadfs/workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/dadfs/workflow.sh -------------------------------------------------------------------------------- /Lab/Lab 7/l7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 7/l7.pdf -------------------------------------------------------------------------------- /Lab/Lab 8/.gitignore: -------------------------------------------------------------------------------- 1 | *.assets/ 2 | .vscode/ 3 | *.zip 4 | -------------------------------------------------------------------------------- /Lab/Lab 8/Lab8 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 8/Lab8 Report.md -------------------------------------------------------------------------------- /Lab/Lab 8/Lab8 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 8/Lab8 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 8/l8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 8/l8.pdf -------------------------------------------------------------------------------- /Lab/Lab 8/ref/MinixVM An Implementation of Virtual Memory in Minix 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 8/ref/MinixVM An Implementation of Virtual Memory in Minix 3.pdf -------------------------------------------------------------------------------- /Lab/Lab 8/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 8/src/cache.c -------------------------------------------------------------------------------- /Lab/Lab 8/src/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 8/src/region.c -------------------------------------------------------------------------------- /Lab/Lab 8/workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 8/workflow.sh -------------------------------------------------------------------------------- /Lab/Lab 9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/.gitignore -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9 Report.assets/image-20201130042205853.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9 Report.assets/image-20201130042205853.png -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9 Report.assets/image-20201130164611617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9 Report.assets/image-20201130164611617.png -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9 Report.assets/image-20201130173725835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9 Report.assets/image-20201130173725835.png -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9 Report.assets/image-20201130173758323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9 Report.assets/image-20201130173758323.png -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9 Report.assets/image-20201130173839284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9 Report.assets/image-20201130173839284.png -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9 Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9 Report.md -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9 Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9 Report.pdf -------------------------------------------------------------------------------- /Lab/Lab 9/Lab9_TimShi.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/Lab9_TimShi.docx -------------------------------------------------------------------------------- /Lab/Lab 9/dice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/dice/Makefile -------------------------------------------------------------------------------- /Lab/Lab 9/dice/dice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/dice/dice.c -------------------------------------------------------------------------------- /Lab/Lab 9/dice/dice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/dice/dice.h -------------------------------------------------------------------------------- /Lab/Lab 9/dice/workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/dice/workflow.sh -------------------------------------------------------------------------------- /Lab/Lab 9/l9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Lab/Lab 9/l9.pdf -------------------------------------------------------------------------------- /Project/p1-compile-guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Project/p1-compile-guide.pdf -------------------------------------------------------------------------------- /Project/p1-specifications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Project/p1-specifications.pdf -------------------------------------------------------------------------------- /Project/p1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Project/p1.pdf -------------------------------------------------------------------------------- /Project/p2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Project/p2.pdf -------------------------------------------------------------------------------- /Project/p3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/Project/p3.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/README.md -------------------------------------------------------------------------------- /eBooks/Modern Operating Systems-4nd-A.Tanenbaum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/eBooks/Modern Operating Systems-4nd-A.Tanenbaum.pdf -------------------------------------------------------------------------------- /eBooks/Operating System Concepts-2004-Instructor's Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/eBooks/Operating System Concepts-2004-Instructor's Manual.pdf -------------------------------------------------------------------------------- /eBooks/Operating Systems-Three Easy Pieces-2020.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/eBooks/Operating Systems-Three Easy Pieces-2020.pdf -------------------------------------------------------------------------------- /extra/firefox_os_story.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/extra/firefox_os_story.pdf -------------------------------------------------------------------------------- /extra/linux_story.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/extra/linux_story.pdf -------------------------------------------------------------------------------- /extra/minix_contribution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/extra/minix_contribution.pdf -------------------------------------------------------------------------------- /extra/minix_intro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/extra/minix_intro.pdf -------------------------------------------------------------------------------- /slides/c0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c0.pdf -------------------------------------------------------------------------------- /slides/c1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c1.pdf -------------------------------------------------------------------------------- /slides/c10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c10.pdf -------------------------------------------------------------------------------- /slides/c2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c2.pdf -------------------------------------------------------------------------------- /slides/c3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c3.pdf -------------------------------------------------------------------------------- /slides/c4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c4.pdf -------------------------------------------------------------------------------- /slides/c5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c5.pdf -------------------------------------------------------------------------------- /slides/c6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c6.pdf -------------------------------------------------------------------------------- /slides/c7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c7.pdf -------------------------------------------------------------------------------- /slides/c8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c8.pdf -------------------------------------------------------------------------------- /slides/c9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/c9.pdf -------------------------------------------------------------------------------- /slides/ve482-p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/ve482-p.pdf -------------------------------------------------------------------------------- /slides/ve482.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/williamqwu/VE482-public/HEAD/slides/ve482.pdf --------------------------------------------------------------------------------