From 1ac3ade734bb084dbdecb509f3f809339ca1caad Mon Sep 17 00:00:00 2001 From: Xorlent <94985297+Xorlent@users.noreply.github.com> Date: Sat, 17 Jun 2023 20:28:59 -0700 Subject: [PATCH] Update Makefile Bochs called even though debug mode not requested. Changed to qemu for standard build/run. --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index f85824a..6ed5740 100644 --- a/src/Makefile +++ b/src/Makefile @@ -66,8 +66,8 @@ kernel: $(BOOTSTRAP_FILE) $(KERNEL_FILE) dd if=bootstrap.o of=kernel.img dd seek=1 conv=sync if=539kernel.bin of=kernel.img bs=512 count=20 dd seek=21 conv=sync if=/dev/zero of=kernel.img bs=512 count=2046 - bochs -f bochs - #qemu-system-x86_64 -s kernel.img + #bochs -f bochs + qemu-system-x86_64 -s kernel.img debug: $(BOOTSTRAP_FILE) $(KERNEL_FILE) $(ASM) -f bin $(BOOTSTRAP_FILE) -o bootstrap.o