From c1241d9b7506b3e177860c289a23be204b29955e Mon Sep 17 00:00:00 2001 From: Gilles Grimaud <gilles.grimaud@univ-lille.fr> Date: Fri, 26 Mar 2021 14:53:10 +0100 Subject: [PATCH] Update Makefile, "make run" for graphical execution and "make run_curses" for terminal emulation of CGA in VT100... --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index c7dfca7..2407fee 100644 --- a/Makefile +++ b/Makefile @@ -35,8 +35,12 @@ $(IMAGE): $(BINFILE) grub-mkrescue -d /usr/lib/grub/i386-pc/ -o $(IMAGE) ./ run: + qemu-system-x86_64 -boot d -m 2048 -cdrom mykernel.iso + +run_curses: qemu-system-x86_64 -boot d -m 2048 -cdrom mykernel.iso -curses + $(BINFILE): $(AOBJ) $(COBJ) $(LD) $(LDFLAGS) -Tlink.ld $^ -o $@ -- GitLab