Release
Getting Started
1. Installing Dependencies
For Windows (I recommend using WSL tho)
choco install binutils gcc mingw make qemu # If using ChocolateyCaution: There may be more dependencies required to be installed for Windows
For macOS
brew install nasm gcc qemu makeFor Linux/WSL (Debian Based)
sudo apt update
sudo apt install nasm gcc qemu-system-x86 make libattr1 libc6-i386 binutilsNote: You can install only
qemu-system-x86if you're not building.
2. Booting
qemu-system-i386 -drive format=raw,file=./path/to/os.bin,if=ideNote: The command may be slightly different on windows (just use wsl)