├── README.md └── kernel_development ├── notes ├── notes.txt └── system_architecture.PNG ├── wkp_part1 └── sample1 │ ├── sample1.sln │ └── sample1 │ ├── main.cpp │ ├── sample1.vcxproj │ └── sample1.vcxproj.filters └── wkp_part2 ├── Booster ├── Booster.vcxproj ├── Booster.vcxproj.filters ├── Booster.vcxproj.user └── main.cpp └── PriorityBooster ├── PriorityBooster.sln ├── PriorityBooster.vcxproj ├── PriorityBooster.vcxproj.filters ├── PriorityBooster.vcxproj.user ├── PriorityBoosterCommon.h └── main.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/README.md -------------------------------------------------------------------------------- /kernel_development/notes/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/notes/notes.txt -------------------------------------------------------------------------------- /kernel_development/notes/system_architecture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/notes/system_architecture.PNG -------------------------------------------------------------------------------- /kernel_development/wkp_part1/sample1/sample1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part1/sample1/sample1.sln -------------------------------------------------------------------------------- /kernel_development/wkp_part1/sample1/sample1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part1/sample1/sample1/main.cpp -------------------------------------------------------------------------------- /kernel_development/wkp_part1/sample1/sample1/sample1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part1/sample1/sample1/sample1.vcxproj -------------------------------------------------------------------------------- /kernel_development/wkp_part1/sample1/sample1/sample1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part1/sample1/sample1/sample1.vcxproj.filters -------------------------------------------------------------------------------- /kernel_development/wkp_part2/Booster/Booster.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/Booster/Booster.vcxproj -------------------------------------------------------------------------------- /kernel_development/wkp_part2/Booster/Booster.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/Booster/Booster.vcxproj.filters -------------------------------------------------------------------------------- /kernel_development/wkp_part2/Booster/Booster.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/Booster/Booster.vcxproj.user -------------------------------------------------------------------------------- /kernel_development/wkp_part2/Booster/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/Booster/main.cpp -------------------------------------------------------------------------------- /kernel_development/wkp_part2/PriorityBooster/PriorityBooster.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/PriorityBooster/PriorityBooster.sln -------------------------------------------------------------------------------- /kernel_development/wkp_part2/PriorityBooster/PriorityBooster.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/PriorityBooster/PriorityBooster.vcxproj -------------------------------------------------------------------------------- /kernel_development/wkp_part2/PriorityBooster/PriorityBooster.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/PriorityBooster/PriorityBooster.vcxproj.filters -------------------------------------------------------------------------------- /kernel_development/wkp_part2/PriorityBooster/PriorityBooster.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/PriorityBooster/PriorityBooster.vcxproj.user -------------------------------------------------------------------------------- /kernel_development/wkp_part2/PriorityBooster/PriorityBoosterCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/PriorityBooster/PriorityBoosterCommon.h -------------------------------------------------------------------------------- /kernel_development/wkp_part2/PriorityBooster/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foolish1337/kernel-programming/HEAD/kernel_development/wkp_part2/PriorityBooster/main.cpp --------------------------------------------------------------------------------