tabs/Makefile
2019-12-27 16:43:14 +01:00

9 lines
196 B
Makefile

compile_and_run: compile run
compile:
rm -rf boot.bin
nasm -f bin -o boot.bin main.asm
run:
qemu-system-x86_64 -drive format=raw,file=boot.bin -drive format=raw,file=drive.bin -monitor stdio