├── .gitignore ├── Makefile ├── Readme.md ├── bin ├── Makefile ├── NoNameOS.vfd ├── apps │ ├── hanoi.bin │ ├── hanoi.map │ ├── init.bin │ ├── init.map │ ├── shell.bin │ ├── shell.map │ ├── test.bin │ └── test.map ├── bochsrc.bxrc ├── grub.ima ├── kernel │ ├── kernel.elf │ └── kernel.map ├── lib │ └── libc.a ├── menu.cfg ├── run_bochs.bat └── run_qemu.bat ├── gpl-3.0.txt ├── include ├── apps │ └── shell │ │ └── tinysh.h ├── kernel │ ├── debug.h │ ├── fs │ │ ├── dfs.h │ │ ├── fat.h │ │ └── vfs.h │ ├── interrupt.h │ ├── io │ │ ├── dev │ │ │ ├── bitbucket.h │ │ │ ├── console.h │ │ │ ├── floppy.h │ │ │ └── keyboard.h │ │ ├── io.h │ │ ├── pci.h │ │ └── port.h │ ├── kernel.h │ ├── kprintf.h │ ├── mm │ │ ├── dma.h │ │ ├── mm.h │ │ ├── paging.h │ │ ├── physical.h │ │ └── segmentation.h │ ├── multiboot.h │ ├── pm │ │ ├── elf.h │ │ ├── process.h │ │ ├── scheduler.h │ │ └── sync │ │ │ └── mutex.h │ └── syscall.h ├── lib │ ├── amos.h │ └── libc │ │ ├── ctype.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ └── string.h └── sys │ └── types.h └── src ├── apps ├── Makefile ├── apps.ld ├── hanoi │ ├── Makefile │ └── hanoi.c ├── init │ ├── Makefile │ └── init.c ├── shell │ ├── Makefile │ ├── main.c │ └── tinysh.c └── test │ ├── Makefile │ └── test.c ├── kernel ├── Makefile ├── debug.c ├── fs │ ├── Makefile │ ├── dfs.c │ ├── fat.c │ └── vfs.c ├── interrupt.c ├── io │ ├── Makefile │ ├── dev │ │ ├── Makefile │ │ ├── bitbucket.c │ │ ├── console.c │ │ ├── floppy.c │ │ └── keyboard.c │ ├── io.c │ ├── pci.c │ └── port.c ├── isr.asm ├── kernel.c ├── kernel.ld ├── kprintf.c ├── loader.asm ├── mm │ ├── Makefile │ ├── dma.c │ ├── mm.c │ ├── paging.c │ ├── physical.c │ └── segmentation.c ├── pm │ ├── Makefile │ ├── process.c │ ├── scheduler.c │ └── sync │ │ ├── Makefile │ │ └── mutex.c └── syscall.c └── lib ├── Makefile ├── amos.c └── libc ├── Makefile ├── ctype.c ├── stdio.c ├── stdlib.c └── string.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/Makefile -------------------------------------------------------------------------------- /bin/NoNameOS.vfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/NoNameOS.vfd -------------------------------------------------------------------------------- /bin/apps/hanoi.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/hanoi.bin -------------------------------------------------------------------------------- /bin/apps/hanoi.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/hanoi.map -------------------------------------------------------------------------------- /bin/apps/init.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/init.bin -------------------------------------------------------------------------------- /bin/apps/init.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/init.map -------------------------------------------------------------------------------- /bin/apps/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/shell.bin -------------------------------------------------------------------------------- /bin/apps/shell.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/shell.map -------------------------------------------------------------------------------- /bin/apps/test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/test.bin -------------------------------------------------------------------------------- /bin/apps/test.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/apps/test.map -------------------------------------------------------------------------------- /bin/bochsrc.bxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/bochsrc.bxrc -------------------------------------------------------------------------------- /bin/grub.ima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/grub.ima -------------------------------------------------------------------------------- /bin/kernel/kernel.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/kernel/kernel.elf -------------------------------------------------------------------------------- /bin/kernel/kernel.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/kernel/kernel.map -------------------------------------------------------------------------------- /bin/lib/libc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/lib/libc.a -------------------------------------------------------------------------------- /bin/menu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/menu.cfg -------------------------------------------------------------------------------- /bin/run_bochs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/run_bochs.bat -------------------------------------------------------------------------------- /bin/run_qemu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/bin/run_qemu.bat -------------------------------------------------------------------------------- /gpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/gpl-3.0.txt -------------------------------------------------------------------------------- /include/apps/shell/tinysh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/apps/shell/tinysh.h -------------------------------------------------------------------------------- /include/kernel/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/debug.h -------------------------------------------------------------------------------- /include/kernel/fs/dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/fs/dfs.h -------------------------------------------------------------------------------- /include/kernel/fs/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/fs/fat.h -------------------------------------------------------------------------------- /include/kernel/fs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/fs/vfs.h -------------------------------------------------------------------------------- /include/kernel/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/interrupt.h -------------------------------------------------------------------------------- /include/kernel/io/dev/bitbucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/io/dev/bitbucket.h -------------------------------------------------------------------------------- /include/kernel/io/dev/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/io/dev/console.h -------------------------------------------------------------------------------- /include/kernel/io/dev/floppy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/io/dev/floppy.h -------------------------------------------------------------------------------- /include/kernel/io/dev/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/io/dev/keyboard.h -------------------------------------------------------------------------------- /include/kernel/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/io/io.h -------------------------------------------------------------------------------- /include/kernel/io/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/io/pci.h -------------------------------------------------------------------------------- /include/kernel/io/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/io/port.h -------------------------------------------------------------------------------- /include/kernel/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/kernel.h -------------------------------------------------------------------------------- /include/kernel/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/kprintf.h -------------------------------------------------------------------------------- /include/kernel/mm/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/mm/dma.h -------------------------------------------------------------------------------- /include/kernel/mm/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/mm/mm.h -------------------------------------------------------------------------------- /include/kernel/mm/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/mm/paging.h -------------------------------------------------------------------------------- /include/kernel/mm/physical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/mm/physical.h -------------------------------------------------------------------------------- /include/kernel/mm/segmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/mm/segmentation.h -------------------------------------------------------------------------------- /include/kernel/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/multiboot.h -------------------------------------------------------------------------------- /include/kernel/pm/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/pm/elf.h -------------------------------------------------------------------------------- /include/kernel/pm/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/pm/process.h -------------------------------------------------------------------------------- /include/kernel/pm/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/pm/scheduler.h -------------------------------------------------------------------------------- /include/kernel/pm/sync/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/pm/sync/mutex.h -------------------------------------------------------------------------------- /include/kernel/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/kernel/syscall.h -------------------------------------------------------------------------------- /include/lib/amos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/lib/amos.h -------------------------------------------------------------------------------- /include/lib/libc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/lib/libc/ctype.h -------------------------------------------------------------------------------- /include/lib/libc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/lib/libc/stdio.h -------------------------------------------------------------------------------- /include/lib/libc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/lib/libc/stdlib.h -------------------------------------------------------------------------------- /include/lib/libc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/lib/libc/string.h -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/include/sys/types.h -------------------------------------------------------------------------------- /src/apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/Makefile -------------------------------------------------------------------------------- /src/apps/apps.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/apps.ld -------------------------------------------------------------------------------- /src/apps/hanoi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/hanoi/Makefile -------------------------------------------------------------------------------- /src/apps/hanoi/hanoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/hanoi/hanoi.c -------------------------------------------------------------------------------- /src/apps/init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/init/Makefile -------------------------------------------------------------------------------- /src/apps/init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/init/init.c -------------------------------------------------------------------------------- /src/apps/shell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/shell/Makefile -------------------------------------------------------------------------------- /src/apps/shell/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/shell/main.c -------------------------------------------------------------------------------- /src/apps/shell/tinysh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/shell/tinysh.c -------------------------------------------------------------------------------- /src/apps/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/test/Makefile -------------------------------------------------------------------------------- /src/apps/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/apps/test/test.c -------------------------------------------------------------------------------- /src/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/Makefile -------------------------------------------------------------------------------- /src/kernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/debug.c -------------------------------------------------------------------------------- /src/kernel/fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/fs/Makefile -------------------------------------------------------------------------------- /src/kernel/fs/dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/fs/dfs.c -------------------------------------------------------------------------------- /src/kernel/fs/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/fs/fat.c -------------------------------------------------------------------------------- /src/kernel/fs/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/fs/vfs.c -------------------------------------------------------------------------------- /src/kernel/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/interrupt.c -------------------------------------------------------------------------------- /src/kernel/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/Makefile -------------------------------------------------------------------------------- /src/kernel/io/dev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/dev/Makefile -------------------------------------------------------------------------------- /src/kernel/io/dev/bitbucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/dev/bitbucket.c -------------------------------------------------------------------------------- /src/kernel/io/dev/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/dev/console.c -------------------------------------------------------------------------------- /src/kernel/io/dev/floppy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/dev/floppy.c -------------------------------------------------------------------------------- /src/kernel/io/dev/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/dev/keyboard.c -------------------------------------------------------------------------------- /src/kernel/io/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/io.c -------------------------------------------------------------------------------- /src/kernel/io/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/pci.c -------------------------------------------------------------------------------- /src/kernel/io/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/io/port.c -------------------------------------------------------------------------------- /src/kernel/isr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/isr.asm -------------------------------------------------------------------------------- /src/kernel/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/kernel.c -------------------------------------------------------------------------------- /src/kernel/kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/kernel.ld -------------------------------------------------------------------------------- /src/kernel/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/kprintf.c -------------------------------------------------------------------------------- /src/kernel/loader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/loader.asm -------------------------------------------------------------------------------- /src/kernel/mm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/mm/Makefile -------------------------------------------------------------------------------- /src/kernel/mm/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/mm/dma.c -------------------------------------------------------------------------------- /src/kernel/mm/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/mm/mm.c -------------------------------------------------------------------------------- /src/kernel/mm/paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/mm/paging.c -------------------------------------------------------------------------------- /src/kernel/mm/physical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/mm/physical.c -------------------------------------------------------------------------------- /src/kernel/mm/segmentation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/mm/segmentation.c -------------------------------------------------------------------------------- /src/kernel/pm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/pm/Makefile -------------------------------------------------------------------------------- /src/kernel/pm/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/pm/process.c -------------------------------------------------------------------------------- /src/kernel/pm/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/pm/scheduler.c -------------------------------------------------------------------------------- /src/kernel/pm/sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/pm/sync/Makefile -------------------------------------------------------------------------------- /src/kernel/pm/sync/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/pm/sync/mutex.c -------------------------------------------------------------------------------- /src/kernel/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/kernel/syscall.c -------------------------------------------------------------------------------- /src/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/lib/Makefile -------------------------------------------------------------------------------- /src/lib/amos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/lib/amos.c -------------------------------------------------------------------------------- /src/lib/libc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/lib/libc/Makefile -------------------------------------------------------------------------------- /src/lib/libc/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/lib/libc/ctype.c -------------------------------------------------------------------------------- /src/lib/libc/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/lib/libc/stdio.c -------------------------------------------------------------------------------- /src/lib/libc/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/lib/libc/stdlib.c -------------------------------------------------------------------------------- /src/lib/libc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenfewer/NoNameOS/HEAD/src/lib/libc/string.c --------------------------------------------------------------------------------