| |||||
Technical Support Support Resources
Product Information | GENERAL: 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 SRC directive to create assembler output from the C compiler. The SRC directive causes the compiler to generate an .SRC file with the same name as your C file. You may then assemble the .SRC file with the assembler. Note that if you make changes to the .SRC file, you should rename it to .A51 or .A66 since re-compiling the C file may overwrite the .SRC file. You may use the SRC directive as the first line in the file. For example: #pragma src . . . Or, you may use it on the command line: c51 myfile.c src c166 newfile.c src MORE INFORMATIONSEE ALSO
FORUM THREADSThe following Discussion Forum threads may provide information related to this topic. Last Reviewed: Monday, March 10, 2008 | ||||
| |||||