From a899964fce089bd7096cc6e0b3d57b9114122350 Mon Sep 17 00:00:00 2001 From: Ruslan Isaev Date: Tue, 18 Mar 2025 00:22:56 +0300 Subject: [PATCH] add test-bochs target to makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 984faba..47e253b 100644 --- a/Makefile +++ b/Makefile @@ -25,6 +25,9 @@ image: test: qemu-system-i386 -drive file=boot.iso,media=disk,format=raw -m 512M +test-bochs: + bochs -f bochsrc + $(OUTPUT): $(OBJS) $(CC) -T $(LDSCRIPT) -o $@ $(OBJS) $(LDFLAGS)