cancel
Showing results for 
Search instead for 
Did you mean: 

How get the List file from assembler?

SSeo.17
Associate III

Hello

I'm using CubeIDE.

I want to get list file which is containing OP code from "Startup_stm32f427zgtx.s" as a output of assembler.

I heard that I could use -Wa, -al option here and there on the Webs, but I couldn't get the list file of the assembler.

I'm waiting for your help.

Best Regards.

1 ACCEPTED SOLUTION

Accepted Solutions
Nikita91
Lead II

In the debug folder of the project you get a <project_name>.list file.

This is the list file for the entire project.

You can search a label in this file to look at what you want.

View solution in original post

2 REPLIES 2
Nikita91
Lead II

In the debug folder of the project you get a <project_name>.list file.

This is the list file for the entire project.

You can search a label in this file to look at what you want.

I found the list file in the folder you mentioned.

Thank you.