Page 1 of 1

No ASM file output shown in AVR FlowCode V4

Posted: Thu Apr 15, 2010 4:48 pm
by Huib Koppers
hello,

I am using AVR FlowCode v4.

I have written a Flowcode program for de ATmega1280 and compilation in C and hex is succesfull but there is no assembler ASM file shown in de output listings.

When i am using de "show asm" in de chip tab there is also no asm listing shown.

Do i have a wrong configuration of FlowCode and how can i correct this issue ?

Kind regards

Huib

Re: No ASM file output shown in AVR FlowCode V4

Posted: Fri Apr 16, 2010 8:36 am
by Sean
Hello Huib,

The asm file (extension .lst) is created by the first set of compiler instructions.

The parameter string for Compiler - Parameters (in the Chip -> Compiler Options menu) should be:

%t "%D\%f.elf" "%D\%f.c" "%D\%f.lst"


The following line in the compiler batch file being used (avra.bat or avrafp.bat) in the MX_bats folder causes the .lst file to be created:

"%~dp0..\bin\avr-objdump.exe" -S %2 > %4

Re: No ASM file output shown in AVR FlowCode V4

Posted: Fri Apr 16, 2010 2:52 pm
by Huib Koppers
Sean,

Thanks for your reply, i used in Notepad++ also the asm filter so don't recogniced the .lst file.

Kind regards

Huib