Files
nub-os/README.md
2025-08-23 17:23:03 +02:00

30 lines
314 B
Markdown

# Nub OS
## Dependencies
- `make`
- `grub`
- `mtools`
- `i386-elf-gcc`
- `i386-elf-ld`
## Building
```sh
make
```
## Running
After building, run the following:
```sh
qemu-system-x86_64 -cdrom .build/nub-os.iso
```
Or all in once build and run
```sh
make && qemu-system-x86_64 -cdrom .build/nub-os.iso
```