tabs/Makefile

9 lines
280 B
Makefile
Raw Normal View History

2019-12-28 12:04:53 +00:00
compile_and_run: compile_bootloader run_bootloader
2019-12-28 12:04:53 +00:00
compile_bootloader:
rm -rf target/boot.bin
nasm -f bin -o target/boot.bin bootloader/main.asm
2019-12-28 12:04:53 +00:00
run_bootloader:
qemu-system-x86_64 -drive format=raw,file=target/boot.bin -drive format=raw,file=target/kernel.bin -monitor stdio