Hello
CodeWarrior for Coldfire Compiler generates directly object code for the ColdFire CPU.
It does not generate an intermediate assembly source file that you could build using the macro assembler tool.
If you want to check the assembly code generated by the compiler, you can ask it to disassemble the source file.
If you are building from the IDE you have to follow these steps:
- Open the project in the IDE
- Right click on the source file name you want to disassemble and select "disassemble"
in the drop down menu
- A new window is opened showing the disassembly listing for the source file.
- Select File -> Save As to save content of the window to a file.
Using the Panel "ELF Disassembler" from the target setting dialog, you can configure what you want to see in that listing file.
If you are building from batch (make file , batch file, ...) you can use the option -S for that.
This will generate a file with extension .s containing the disassembly listing.
I hope this helps.
CrasyCat