diff options
author | dzwdz | 2021-08-09 22:40:23 +0200 |
---|---|---|
committer | dzwdz | 2021-08-09 22:40:23 +0200 |
commit | a8b89d2536a660e0216fb54e7681e35f6ac67483 (patch) | |
tree | 2126276d6c1df3feb0c71cbac8019185b4b588a8 | |
parent | 0b3eb29ded00fe33b2657535d873dfe8238686ea (diff) |
hide the QEMU window, since serial made it mostly useless
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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')) \ |