8 lines
187 B
Makefile
8 lines
187 B
Makefile
boot/boot.bin: boot/boot.asm
|
|
nasm -o boot/boot.bin boot/boot.asm
|
|
|
|
run: boot/boot.bin
|
|
qemu-system-x86_64 -drive file=boot/boot.bin,format=raw,index=0,media=disk
|
|
|
|
clean:
|
|
rm boot/boot.bin
|