diff --git a/makefile b/makefile index 5a7ee9f..6ba8d24 100644 --- a/makefile +++ b/makefile @@ -43,6 +43,10 @@ flash: $(TARGET).hex qemu: $(TARGET).elf qemu-system-avr -machine $(QEMU_MACHINE_NAME) -bios $(TARGET).elf +# View the generated assembly +asm: $(TARGET).hex + avr-objdump -S $(TARGET).elf + # Clean clean: rm -f $(OBJS) $(TARGET).elf $(TARGET).hex