Hello
To get a look at the code generated by the compiler for one single module you have two solution:
1- Use drop down menu
- Open the Project in the IDE
- Open the source file you want to check in an edit window
- Click with the right mouse button in the edit window and select Disassemble from the drop down menu.
A new edit window will be opened showing the disassembly listing.
2-. Get the compiler to generate the disassembly listing when building
- Open the project in the IDE
- Open the Target setting window (Press ALT + F7)
- Switch to "Compiler for HC08" or "Compiler for HC12" (depending whether you are building
for HCS08 or HCS12).
- Add option -Lasm in the Command Line edit box.
Now each time you compile a source file the compiler will generate a disassembly listing file with
extension .lst in your output directory.
The output directory is {Project}\bin if you did not change it in your project.
I hope it helps.
CrasyCat