├── 80m.img ├── 80m.img.gz ├── Makefile ├── README.md ├── a.img ├── bochsrc ├── boot ├── boot.asm ├── boot.bin ├── include │ ├── fat12hdr.inc │ ├── load.inc │ └── pm.inc ├── loader.asm └── loader.bin ├── command ├── .Makefile.swn ├── .Makefile.swo ├── .Makefile.swp ├── Makefile ├── calculator.c ├── echo ├── echo.c ├── game ├── game.c ├── gobang.c ├── guess.c ├── inst.tar ├── kernel.bin ├── pwd ├── pwd.c ├── start.asm └── tic.c ├── fs ├── disklog.c ├── link.c ├── main.c ├── misc.c ├── open.c └── read_write.c ├── include ├── stdio.h ├── string.h ├── sys │ ├── config.h │ ├── console.h │ ├── const.h │ ├── fs.h │ ├── global.h │ ├── hd.h │ ├── keyboard.h │ ├── keymap.h │ ├── proc.h │ ├── protect.h │ ├── proto.h │ ├── sconst.inc │ └── tty.h └── type.h ├── kernel.bin ├── kernel ├── clock.c ├── console.c ├── global.c ├── hd.c ├── i8259.c ├── kernel.asm ├── kernel.bin ├── keyboard.c ├── klib.c ├── kliba.asm ├── main.c ├── proc.c ├── protect.c ├── start.c ├── systask.c └── tty.c ├── krnl.map ├── lib ├── close.c ├── exec.c ├── exit.c ├── fork.c ├── getpid.c ├── misc.c ├── open.c ├── orangescrt.a ├── printf.c ├── read.c ├── stat.c ├── string.asm ├── syscall.asm ├── syslog.c ├── unlink.c ├── vsprintf.c ├── wait.c └── write.c ├── mm ├── exec.c ├── forkexit.c └── main.c └── scripts ├── genlog └── splitgraphs /80m.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/80m.img -------------------------------------------------------------------------------- /80m.img.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/80m.img.gz -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/README.md -------------------------------------------------------------------------------- /a.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/a.img -------------------------------------------------------------------------------- /bochsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/bochsrc -------------------------------------------------------------------------------- /boot/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/boot/boot.asm -------------------------------------------------------------------------------- /boot/boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/boot/boot.bin -------------------------------------------------------------------------------- /boot/include/fat12hdr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/boot/include/fat12hdr.inc -------------------------------------------------------------------------------- /boot/include/load.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/boot/include/load.inc -------------------------------------------------------------------------------- /boot/include/pm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/boot/include/pm.inc -------------------------------------------------------------------------------- /boot/loader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/boot/loader.asm -------------------------------------------------------------------------------- /boot/loader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/boot/loader.bin -------------------------------------------------------------------------------- /command/.Makefile.swn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/.Makefile.swn -------------------------------------------------------------------------------- /command/.Makefile.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/.Makefile.swo -------------------------------------------------------------------------------- /command/.Makefile.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/.Makefile.swp -------------------------------------------------------------------------------- /command/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/Makefile -------------------------------------------------------------------------------- /command/calculator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/calculator.c -------------------------------------------------------------------------------- /command/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/echo -------------------------------------------------------------------------------- /command/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/echo.c -------------------------------------------------------------------------------- /command/game: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/game -------------------------------------------------------------------------------- /command/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/game.c -------------------------------------------------------------------------------- /command/gobang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/gobang.c -------------------------------------------------------------------------------- /command/guess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/guess.c -------------------------------------------------------------------------------- /command/inst.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/inst.tar -------------------------------------------------------------------------------- /command/kernel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/kernel.bin -------------------------------------------------------------------------------- /command/pwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/pwd -------------------------------------------------------------------------------- /command/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/pwd.c -------------------------------------------------------------------------------- /command/start.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/start.asm -------------------------------------------------------------------------------- /command/tic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/command/tic.c -------------------------------------------------------------------------------- /fs/disklog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/fs/disklog.c -------------------------------------------------------------------------------- /fs/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/fs/link.c -------------------------------------------------------------------------------- /fs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/fs/main.c -------------------------------------------------------------------------------- /fs/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/fs/misc.c -------------------------------------------------------------------------------- /fs/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/fs/open.c -------------------------------------------------------------------------------- /fs/read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/fs/read_write.c -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/string.h -------------------------------------------------------------------------------- /include/sys/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/config.h -------------------------------------------------------------------------------- /include/sys/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/console.h -------------------------------------------------------------------------------- /include/sys/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/const.h -------------------------------------------------------------------------------- /include/sys/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/fs.h -------------------------------------------------------------------------------- /include/sys/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/global.h -------------------------------------------------------------------------------- /include/sys/hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/hd.h -------------------------------------------------------------------------------- /include/sys/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/keyboard.h -------------------------------------------------------------------------------- /include/sys/keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/keymap.h -------------------------------------------------------------------------------- /include/sys/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/proc.h -------------------------------------------------------------------------------- /include/sys/protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/protect.h -------------------------------------------------------------------------------- /include/sys/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/proto.h -------------------------------------------------------------------------------- /include/sys/sconst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/sconst.inc -------------------------------------------------------------------------------- /include/sys/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/sys/tty.h -------------------------------------------------------------------------------- /include/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/include/type.h -------------------------------------------------------------------------------- /kernel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel.bin -------------------------------------------------------------------------------- /kernel/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/clock.c -------------------------------------------------------------------------------- /kernel/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/console.c -------------------------------------------------------------------------------- /kernel/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/global.c -------------------------------------------------------------------------------- /kernel/hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/hd.c -------------------------------------------------------------------------------- /kernel/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/i8259.c -------------------------------------------------------------------------------- /kernel/kernel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/kernel.asm -------------------------------------------------------------------------------- /kernel/kernel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/kernel.bin -------------------------------------------------------------------------------- /kernel/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/keyboard.c -------------------------------------------------------------------------------- /kernel/klib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/klib.c -------------------------------------------------------------------------------- /kernel/kliba.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/kliba.asm -------------------------------------------------------------------------------- /kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/main.c -------------------------------------------------------------------------------- /kernel/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/proc.c -------------------------------------------------------------------------------- /kernel/protect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/protect.c -------------------------------------------------------------------------------- /kernel/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/start.c -------------------------------------------------------------------------------- /kernel/systask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/systask.c -------------------------------------------------------------------------------- /kernel/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/kernel/tty.c -------------------------------------------------------------------------------- /krnl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/krnl.map -------------------------------------------------------------------------------- /lib/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/close.c -------------------------------------------------------------------------------- /lib/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/exec.c -------------------------------------------------------------------------------- /lib/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/exit.c -------------------------------------------------------------------------------- /lib/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/fork.c -------------------------------------------------------------------------------- /lib/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/getpid.c -------------------------------------------------------------------------------- /lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/misc.c -------------------------------------------------------------------------------- /lib/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/open.c -------------------------------------------------------------------------------- /lib/orangescrt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/orangescrt.a -------------------------------------------------------------------------------- /lib/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/printf.c -------------------------------------------------------------------------------- /lib/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/read.c -------------------------------------------------------------------------------- /lib/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/stat.c -------------------------------------------------------------------------------- /lib/string.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/string.asm -------------------------------------------------------------------------------- /lib/syscall.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/syscall.asm -------------------------------------------------------------------------------- /lib/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/syslog.c -------------------------------------------------------------------------------- /lib/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/unlink.c -------------------------------------------------------------------------------- /lib/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/vsprintf.c -------------------------------------------------------------------------------- /lib/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/wait.c -------------------------------------------------------------------------------- /lib/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/lib/write.c -------------------------------------------------------------------------------- /mm/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/mm/exec.c -------------------------------------------------------------------------------- /mm/forkexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/mm/forkexit.c -------------------------------------------------------------------------------- /mm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/mm/main.c -------------------------------------------------------------------------------- /scripts/genlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/scripts/genlog -------------------------------------------------------------------------------- /scripts/splitgraphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TYWZ-milk/Orange_OS/HEAD/scripts/splitgraphs --------------------------------------------------------------------------------