├── Makefile ├── README.md ├── fat12 ├── Makefile ├── hack.c └── hack.h ├── include ├── config.h ├── cpu.h ├── fs.h ├── io.h ├── kernel.h ├── list.h ├── shell.h ├── syscall.h └── task.h └── source ├── boot.nasm ├── fs.c ├── io.c ├── kernel.c ├── shell.c ├── syscall.c └── task.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/README.md -------------------------------------------------------------------------------- /fat12/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/fat12/Makefile -------------------------------------------------------------------------------- /fat12/hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/fat12/hack.c -------------------------------------------------------------------------------- /fat12/hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/fat12/hack.h -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/config.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/io.h -------------------------------------------------------------------------------- /include/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/kernel.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/list.h -------------------------------------------------------------------------------- /include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/shell.h -------------------------------------------------------------------------------- /include/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/syscall.h -------------------------------------------------------------------------------- /include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/include/task.h -------------------------------------------------------------------------------- /source/boot.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/source/boot.nasm -------------------------------------------------------------------------------- /source/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/source/fs.c -------------------------------------------------------------------------------- /source/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/source/io.c -------------------------------------------------------------------------------- /source/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/source/kernel.c -------------------------------------------------------------------------------- /source/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/source/shell.c -------------------------------------------------------------------------------- /source/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/source/syscall.c -------------------------------------------------------------------------------- /source/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aegiryy/fryy/HEAD/source/task.c --------------------------------------------------------------------------------