- Notifications
You must be signed in to change notification settings - Fork0
A simple, text-based, single-tasking operating system written in C
License
allkern/koalaos
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A simple, text-based, single-tasking operating system written in C
- Read-only access to ext2 filesystems
- GPU-accelerated terminal renderer with limited support for ANSI escape sequences
- Minimal implementation of standard Unix utilities (
cat
,ls
, etc.) - Lightweight, minimal implementation of the C standard library
- A built-in CHIP-8 emulator!
- RTC support
You have to get your hands on a MIPS R3000-compatible GCC toolchain, I usedmipsel-linux-gnu-
and this is what the Makefile is currently configured to use.
Once you have an R3000 toolchain, building should be very easy, execute the following commands in this order:
makemake kernel
Additionally, runningmake fs
(needs root access) will copy the compiled binaries to theroot
folder (not/
), and will generate a disk image for use in anemulator.
src/config.h
contains a couple configuration switches:
GPU_FONT16/GPU_FONT8
allow selecting the height of the font for the GPU-based rendererTERM_GPU/TERM_UART
allow selecting whether to use the GPU-based terminal or write all output to the emulated UART chip
Warning
KoalaOS has become somewhat unstable after the introduction of dynamic memory mapping, use at your own risk
There's no real reason to use this OS other than fun or torture, but if you decide to do so anyways, here's some useful information!
(WIP)
KoalaOS' standard C library implementation contains code from GCC, MUSL and Apple Open Source
About
A simple, text-based, single-tasking operating system written in C