From 0990cb8f484c24eb1b2b735861339c13b4429a2d Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Mon, 25 Mar 2024 08:13:49 +0100 Subject: [PATCH] Updated qemu targets --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index e45067f..4646fe6 100644 --- a/makefile +++ b/makefile @@ -47,8 +47,8 @@ flash: $(TARGET).hex avrdude -p $(MCU) -c $(PROGRAMMER) -U flash:w:$(TARGET).hex # Run the program in QEMU -qemu: $(TARGET).elf - qemu-system-avr -machine $(QEMU_MACHINE_NAME) -bios $(OBJDIR)/$(TARGET).elf +qemu: $(OBJDIR)/$(TARGET).elf + qemu-system-avr --nographic -machine $(QEMU_MACHINE_NAME) -bios $(OBJDIR)/$(TARGET).elf # View the generated assembly asm: $(TARGET).hex @@ -81,4 +81,4 @@ read-eeprom: read-fuses: avrdude -p $(MCU) -c $(PROGRAMMER) -U lfuse:r:-:h -U hfuse:r:-:h -U efuse:r:-:h -.PHONY: all clean flash qemu asm serial reset read-flash read-eeprom size \ No newline at end of file +.PHONY: all clean flash qemu asm serial reset read-flash read-eeprom size