No ASM file output shown in AVR FlowCode V4

For C and ASSEMBLY users to post questions and code snippets for programming in C and ASSEMBLY. And for any other C or ASM course related questions.

Moderators: Benj, Mods

Post Reply
Huib Koppers
Posts: 63
Joined: Fri Oct 12, 2007 5:13 pm
Location: Netherlands
Been thanked: 1 time
Contact:

No ASM file output shown in AVR FlowCode V4

Post 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

Sean
Valued Contributor
Valued Contributor
Posts: 548
Joined: Tue Jun 26, 2007 11:23 am
Has thanked: 6 times
Been thanked: 44 times
Contact:

Re: No ASM file output shown in AVR FlowCode V4

Post 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

Huib Koppers
Posts: 63
Joined: Fri Oct 12, 2007 5:13 pm
Location: Netherlands
Been thanked: 1 time
Contact:

Re: No ASM file output shown in AVR FlowCode V4

Post 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

Post Reply