summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordzwdz2021-08-09 22:40:23 +0200
committerdzwdz2021-08-09 22:40:23 +0200
commita8b89d2536a660e0216fb54e7681e35f6ac67483 (patch)
tree2126276d6c1df3feb0c71cbac8019185b4b588a8
parent0b3eb29ded00fe33b2657535d873dfe8238686ea (diff)
hide the QEMU window, since serial made it mostly useless
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7d5802c..d9078f0 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ CFLAGS = -std=gnu99 -ffreestanding -O2 -Wall -Wextra
CFLAGS += -mgeneral-regs-only
CFLAGS += -Isrc/
LFLAGS = -ffreestanding -O2 -nostdlib -lgcc
-QFLAGS = -no-reboot -serial stdio
+QFLAGS = -no-reboot -serial stdio -display none
define from_sources
$(patsubst src/%.s,out/obj/%.s.o,$(shell find $(1) -type f -name '*.s')) \