Tool/software: Code Composer Studio
Hi there,
I've developed some modules using macro assembler but I can't figure out how can I debug my macro step by step due I can't "step into" my macro call.
Any tips ?
Best.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hi there,
I've developed some modules using macro assembler but I can't figure out how can I debug my macro step by step due I can't "step into" my macro call.
Any tips ?
Best.
Use the option --asm_listing to create a listing file. This option is documented in the C2000 assembly tools manual. It will have the same name as the source file, with the extension changed to .lst. You can usually work out what a macro did by looking at the listing.
Thanks and regards,
-George