gdsports:
Yes! I also got it to work with avr-objdump -D
Now that i have the file i want ... I assume the sequential numbers on the left are just that: program line numbers. but are the next numbers in hex the actual memory address of the opcode or data?
so: from your snippet:
37e: 81 e0 ldi r24, 0x01 ; 1
380: 0e 94 70 00 call 0xe0 ; 0xe0 <digitalWrite.constprop.0>
The 37E and 380 on the far left are program line numbers.
The 81E0 and 0E94 are 16 bit memory address of "LDI" and "CALL"?