Updated qemu targets
This commit is contained in:
parent
446dad0242
commit
0990cb8f48
1 changed files with 3 additions and 3 deletions
4
makefile
4
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
|
||||
|
|
Loading…
Reference in a new issue