A Lightweight Hobby Operating System Designed around the Delta Programming Language. Made by Pranav Verma.
To build and run Delta OS, you need the following tools installed:
- NASM (Netwide Assembler) - For assembling the bootloader
- QEMU - For running and testing the OS
- Make - For building the project
sudo apt-get install nasm qemu-system-x86 makesudo pacman -S nasm qemu makebrew install nasm qemu makesudo dnf install nasm qemu-system-x86 make# Build the bootloader
make build
# Build and run in QEMU
make run
# Show available commands
make help