From 024d6c5075b6e6fad536424e197d25cec07c9a32 Mon Sep 17 00:00:00 2001 From: Robbe Van Herck Date: Sat, 28 Dec 2019 13:55:55 +0100 Subject: [PATCH] Also bootloader should be i386 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e312626..e0ef225 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,4 @@ compile_bootloader: nasm -f bin -o target/boot.bin bootloader/main.asm run_bootloader: compile_bootloader - qemu-system-x86_64 -drive format=raw,file=target/boot.bin -drive format=raw,file=target/kernel.bin -monitor stdio + qemu-system-i386 -drive format=raw,file=target/boot.bin -drive format=raw,file=target/kernel.bin -monitor stdio