├── .github └── out_img │ ├── img_11.png │ ├── p_01_out.jpg │ ├── p_02_out.jpg │ ├── p_03_out.jpg │ ├── p_04_out.jpg │ ├── p_05_out-1.jpg │ ├── p_05_out-2.jpg │ ├── p_06_out-1.png │ ├── p_06_out-2.png │ ├── p_06_out-3.png │ ├── p_07_out.png │ ├── p_08_out.png │ ├── p_09_out.png │ ├── p_10_out.jpg │ ├── p_11_out.png │ ├── p_12_out.png │ ├── p_16_out.png │ ├── p_17_out.png │ └── p_18_out.png ├── .gitignore ├── CPU Scheduling ├── FCFS │ ├── 1.fcfs.c │ └── README.md ├── Priority │ ├── 3.priority.c │ └── README.md ├── README.md ├── RoundRobin │ ├── 4.roundrobin.c │ └── README.md └── SJF │ ├── 2.sjf.c │ └── README.md ├── Deadlocks ├── BankersAlgorithm │ ├── 7.bankers.c │ └── README.md └── README.md ├── Disk Management ├── CSCAN │ ├── 10.csan.c │ └── README.md ├── FCFS │ ├── 8.fcfsDisk.c │ └── README.md ├── README.md └── SCAN │ ├── 9.scan.c │ └── README.md ├── LICENSE ├── Memory Management ├── README.md ├── SingleLevelDir │ ├── 5.singleLevelDir.c │ └── README.md └── TwoLevelDir │ ├── 6.twoLevelDir.c │ └── README.md ├── Process Synchronization ├── Absolute Loader │ ├── 19.absolute.c │ ├── README.md │ ├── input.txt │ └── output.txt ├── Assemblers │ ├── README.md │ ├── Single Pass Assembler │ │ ├── 18.singlepass.c │ │ ├── README.md │ │ ├── input.txt │ │ ├── intermediate.txt │ │ ├── objcode.txt │ │ ├── optab.txt │ │ ├── output.txt │ │ └── symtab.txt │ └── Two Pass Assembler │ │ ├── Pass 1 of a Two Pass Assembler │ │ ├── 16.pass1.c │ │ ├── README.md │ │ ├── input.txt │ │ ├── intermediate.txt │ │ ├── length.txt │ │ ├── optab.txt │ │ └── symtab.txt │ │ └── Pass 2 of a Two Pass Assembler │ │ ├── 17.pass2.c │ │ ├── README.md │ │ ├── intermediate.txt │ │ ├── objcode.txt │ │ ├── output.txt │ │ └── symtab.txt ├── Dining Philosophers │ ├── 15.dining.c │ └── README.md ├── Producer Consumer │ ├── 14.producer.c │ └── README.md └── README.md ├── README.md ├── Virtual Memory ├── FIFO │ ├── 11.fifoPage.c │ └── README.md ├── LFU │ ├── 13.lfu.c │ └── README.md ├── LRU │ ├── 12.lru.c │ └── README.md └── README.md └── _config.yml /.github/out_img/img_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/img_11.png -------------------------------------------------------------------------------- /.github/out_img/p_01_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_01_out.jpg -------------------------------------------------------------------------------- /.github/out_img/p_02_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_02_out.jpg -------------------------------------------------------------------------------- /.github/out_img/p_03_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_03_out.jpg -------------------------------------------------------------------------------- /.github/out_img/p_04_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_04_out.jpg -------------------------------------------------------------------------------- /.github/out_img/p_05_out-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_05_out-1.jpg -------------------------------------------------------------------------------- /.github/out_img/p_05_out-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_05_out-2.jpg -------------------------------------------------------------------------------- /.github/out_img/p_06_out-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_06_out-1.png -------------------------------------------------------------------------------- /.github/out_img/p_06_out-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_06_out-2.png -------------------------------------------------------------------------------- /.github/out_img/p_06_out-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_06_out-3.png -------------------------------------------------------------------------------- /.github/out_img/p_07_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_07_out.png -------------------------------------------------------------------------------- /.github/out_img/p_08_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_08_out.png -------------------------------------------------------------------------------- /.github/out_img/p_09_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_09_out.png -------------------------------------------------------------------------------- /.github/out_img/p_10_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_10_out.jpg -------------------------------------------------------------------------------- /.github/out_img/p_11_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_11_out.png -------------------------------------------------------------------------------- /.github/out_img/p_12_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_12_out.png -------------------------------------------------------------------------------- /.github/out_img/p_16_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_16_out.png -------------------------------------------------------------------------------- /.github/out_img/p_17_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_17_out.png -------------------------------------------------------------------------------- /.github/out_img/p_18_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.github/out_img/p_18_out.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/.gitignore -------------------------------------------------------------------------------- /CPU Scheduling/FCFS/1.fcfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/FCFS/1.fcfs.c -------------------------------------------------------------------------------- /CPU Scheduling/FCFS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/FCFS/README.md -------------------------------------------------------------------------------- /CPU Scheduling/Priority/3.priority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/Priority/3.priority.c -------------------------------------------------------------------------------- /CPU Scheduling/Priority/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/Priority/README.md -------------------------------------------------------------------------------- /CPU Scheduling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/README.md -------------------------------------------------------------------------------- /CPU Scheduling/RoundRobin/4.roundrobin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/RoundRobin/4.roundrobin.c -------------------------------------------------------------------------------- /CPU Scheduling/RoundRobin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/RoundRobin/README.md -------------------------------------------------------------------------------- /CPU Scheduling/SJF/2.sjf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/SJF/2.sjf.c -------------------------------------------------------------------------------- /CPU Scheduling/SJF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/CPU Scheduling/SJF/README.md -------------------------------------------------------------------------------- /Deadlocks/BankersAlgorithm/7.bankers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Deadlocks/BankersAlgorithm/7.bankers.c -------------------------------------------------------------------------------- /Deadlocks/BankersAlgorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Deadlocks/BankersAlgorithm/README.md -------------------------------------------------------------------------------- /Deadlocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Deadlocks/README.md -------------------------------------------------------------------------------- /Disk Management/CSCAN/10.csan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Disk Management/CSCAN/10.csan.c -------------------------------------------------------------------------------- /Disk Management/CSCAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Disk Management/CSCAN/README.md -------------------------------------------------------------------------------- /Disk Management/FCFS/8.fcfsDisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Disk Management/FCFS/8.fcfsDisk.c -------------------------------------------------------------------------------- /Disk Management/FCFS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Disk Management/FCFS/README.md -------------------------------------------------------------------------------- /Disk Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Disk Management/README.md -------------------------------------------------------------------------------- /Disk Management/SCAN/9.scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Disk Management/SCAN/9.scan.c -------------------------------------------------------------------------------- /Disk Management/SCAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Disk Management/SCAN/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/LICENSE -------------------------------------------------------------------------------- /Memory Management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Memory Management/README.md -------------------------------------------------------------------------------- /Memory Management/SingleLevelDir/5.singleLevelDir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Memory Management/SingleLevelDir/5.singleLevelDir.c -------------------------------------------------------------------------------- /Memory Management/SingleLevelDir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Memory Management/SingleLevelDir/README.md -------------------------------------------------------------------------------- /Memory Management/TwoLevelDir/6.twoLevelDir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Memory Management/TwoLevelDir/6.twoLevelDir.c -------------------------------------------------------------------------------- /Memory Management/TwoLevelDir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Memory Management/TwoLevelDir/README.md -------------------------------------------------------------------------------- /Process Synchronization/Absolute Loader/19.absolute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Absolute Loader/19.absolute.c -------------------------------------------------------------------------------- /Process Synchronization/Absolute Loader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Absolute Loader/README.md -------------------------------------------------------------------------------- /Process Synchronization/Absolute Loader/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Absolute Loader/input.txt -------------------------------------------------------------------------------- /Process Synchronization/Absolute Loader/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Absolute Loader/output.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/README.md -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/18.singlepass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/18.singlepass.c -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/README.md -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/input.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/intermediate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/intermediate.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/objcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/objcode.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/optab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/optab.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/output.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Single Pass Assembler/symtab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Single Pass Assembler/symtab.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/16.pass1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/16.pass1.c -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/README.md -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/input.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/intermediate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/intermediate.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/length.txt: -------------------------------------------------------------------------------- 1 | 23 -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/optab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/optab.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/symtab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 1 of a Two Pass Assembler/symtab.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/17.pass2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/17.pass2.c -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/README.md -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/intermediate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/intermediate.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/objcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/objcode.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/output.txt -------------------------------------------------------------------------------- /Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/symtab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Assemblers/Two Pass Assembler/Pass 2 of a Two Pass Assembler/symtab.txt -------------------------------------------------------------------------------- /Process Synchronization/Dining Philosophers/15.dining.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Dining Philosophers/15.dining.c -------------------------------------------------------------------------------- /Process Synchronization/Dining Philosophers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Dining Philosophers/README.md -------------------------------------------------------------------------------- /Process Synchronization/Producer Consumer/14.producer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Producer Consumer/14.producer.c -------------------------------------------------------------------------------- /Process Synchronization/Producer Consumer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/Producer Consumer/README.md -------------------------------------------------------------------------------- /Process Synchronization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Process Synchronization/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/README.md -------------------------------------------------------------------------------- /Virtual Memory/FIFO/11.fifoPage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Virtual Memory/FIFO/11.fifoPage.c -------------------------------------------------------------------------------- /Virtual Memory/FIFO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Virtual Memory/FIFO/README.md -------------------------------------------------------------------------------- /Virtual Memory/LFU/13.lfu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Virtual Memory/LFU/13.lfu.c -------------------------------------------------------------------------------- /Virtual Memory/LFU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Virtual Memory/LFU/README.md -------------------------------------------------------------------------------- /Virtual Memory/LRU/12.lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Virtual Memory/LRU/12.lru.c -------------------------------------------------------------------------------- /Virtual Memory/LRU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Virtual Memory/LRU/README.md -------------------------------------------------------------------------------- /Virtual Memory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/Virtual Memory/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceadoor/System-Software-lab/HEAD/_config.yml --------------------------------------------------------------------------------