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