Files
nub-os/makefile
2025-08-22 19:50:06 +02:00

8 lines
110 B
Makefile

boot.bin: boot.asm
nasm -o boot.bin boot.asm
run: boot.bin
qemu-system-x86_64 boot.bin
clean:
rm boot.bin