├── README.md ├── ci └── Dockerfile ├── make_all.sh ├── patches └── patch_for_fdc.patch ├── src ├── .gitignore ├── Makefile ├── arch │ ├── Makefile │ ├── arch.pas │ └── macros.inc ├── drivers │ ├── Makefile │ ├── dma.pas │ ├── floppy.pas │ └── tty.pas ├── filesystem │ ├── Makefile │ ├── fat.pas │ └── filesystem.pas ├── fpc_version ├── kernel │ ├── Makefile │ ├── ToroSys.pas │ ├── kdev.pas │ ├── kernel.pas │ ├── printk.pas │ └── syscall.pas ├── linkfile ├── make.rules ├── memory │ ├── Makefile │ └── memory.pas ├── process │ ├── Makefile │ └── process.pas ├── run.sh ├── toroos.lpi ├── toroos.lps └── version └── tools ├── Makefile ├── cat ├── Makefile └── cat.pas ├── echo ├── Makefile └── echo.pas ├── layout.ld ├── ls ├── Makefile └── ls.pas ├── mkdir ├── Makefile └── mkdir.pas ├── mknod ├── Makefile └── mknod.pas ├── reboot ├── Makefile └── reboot.pas ├── sh ├── Makefile └── sh.pas └── sync ├── Makefile └── sync.pas /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/README.md -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /make_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/make_all.sh -------------------------------------------------------------------------------- /patches/patch_for_fdc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/patches/patch_for_fdc.patch -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/arch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/arch/Makefile -------------------------------------------------------------------------------- /src/arch/arch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/arch/arch.pas -------------------------------------------------------------------------------- /src/arch/macros.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/arch/macros.inc -------------------------------------------------------------------------------- /src/drivers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/drivers/Makefile -------------------------------------------------------------------------------- /src/drivers/dma.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/drivers/dma.pas -------------------------------------------------------------------------------- /src/drivers/floppy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/drivers/floppy.pas -------------------------------------------------------------------------------- /src/drivers/tty.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/drivers/tty.pas -------------------------------------------------------------------------------- /src/filesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/filesystem/Makefile -------------------------------------------------------------------------------- /src/filesystem/fat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/filesystem/fat.pas -------------------------------------------------------------------------------- /src/filesystem/filesystem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/filesystem/filesystem.pas -------------------------------------------------------------------------------- /src/fpc_version: -------------------------------------------------------------------------------- 1 | 3.2.0 2 | -------------------------------------------------------------------------------- /src/kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/kernel/Makefile -------------------------------------------------------------------------------- /src/kernel/ToroSys.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/kernel/ToroSys.pas -------------------------------------------------------------------------------- /src/kernel/kdev.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/kernel/kdev.pas -------------------------------------------------------------------------------- /src/kernel/kernel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/kernel/kernel.pas -------------------------------------------------------------------------------- /src/kernel/printk.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/kernel/printk.pas -------------------------------------------------------------------------------- /src/kernel/syscall.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/kernel/syscall.pas -------------------------------------------------------------------------------- /src/linkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/linkfile -------------------------------------------------------------------------------- /src/make.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/make.rules -------------------------------------------------------------------------------- /src/memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/memory/Makefile -------------------------------------------------------------------------------- /src/memory/memory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/memory/memory.pas -------------------------------------------------------------------------------- /src/process/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/process/Makefile -------------------------------------------------------------------------------- /src/process/process.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/process/process.pas -------------------------------------------------------------------------------- /src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/run.sh -------------------------------------------------------------------------------- /src/toroos.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/toroos.lpi -------------------------------------------------------------------------------- /src/toroos.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/src/toroos.lps -------------------------------------------------------------------------------- /src/version: -------------------------------------------------------------------------------- 1 | 1.2.0 2 | -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/cat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/cat/Makefile -------------------------------------------------------------------------------- /tools/cat/cat.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/cat/cat.pas -------------------------------------------------------------------------------- /tools/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/echo/Makefile -------------------------------------------------------------------------------- /tools/echo/echo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/echo/echo.pas -------------------------------------------------------------------------------- /tools/layout.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/layout.ld -------------------------------------------------------------------------------- /tools/ls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/ls/Makefile -------------------------------------------------------------------------------- /tools/ls/ls.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/ls/ls.pas -------------------------------------------------------------------------------- /tools/mkdir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/mkdir/Makefile -------------------------------------------------------------------------------- /tools/mkdir/mkdir.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/mkdir/mkdir.pas -------------------------------------------------------------------------------- /tools/mknod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/mknod/Makefile -------------------------------------------------------------------------------- /tools/mknod/mknod.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/mknod/mknod.pas -------------------------------------------------------------------------------- /tools/reboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/reboot/Makefile -------------------------------------------------------------------------------- /tools/reboot/reboot.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/reboot/reboot.pas -------------------------------------------------------------------------------- /tools/sh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/sh/Makefile -------------------------------------------------------------------------------- /tools/sh/sh.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/sh/sh.pas -------------------------------------------------------------------------------- /tools/sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/sync/Makefile -------------------------------------------------------------------------------- /tools/sync/sync.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/torokernel/ToroOS/HEAD/tools/sync/sync.pas --------------------------------------------------------------------------------