Updated qemu targets

This commit is contained in:
Imbus 2024-03-25 08:13:49 +01:00
parent 446dad0242
commit 0990cb8f48

View file

@ -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
.PHONY: all clean flash qemu asm serial reset read-flash read-eeprom size