| ||||||||
Technical Support Support Resources Product Information | ARMCC: HOW TO CREATE ASSEMBLY FILES FROM C FILESInformation in this article applies to:
QUESTIONHow do I create an assembler file from my C source file? ANSWERUse the --asm control to create assembler output from the C compiler. The --asm control causes the compiler to generate an .S file with the same name as your C file. You may then assemble the .S file with the assembler. The --asm control is entered in µVision under Project - Options - C/C++ tab - Misc Controls. Also disable the option Project - Listing - C Compiler Listing since this is using a different output. The Assembly file will have a .ASM extension, and will be in your listing file folder for your project. SEE ALSOLast Reviewed: Thursday, January 07, 2010 | |||||||
| ||||||||