2022-03-07 05:28 PM
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.
Solved! Go to Solution.
2022-03-08 09:33 AM
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.
2022-03-08 09:33 AM
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.
2022-03-08 09:55 PM
I found the list file in the folder you mentioned.
Thank you.