Part Number: CCSTUDIO
Tool/software: Code Composer Studio
hi
i'm trying to port a ccs3 code under ccs7
after a bloody battle i obtained a full (functional?) code but i realized i need an assembled output too
ccs3 give also an .asm file like this
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.
Part Number: CCSTUDIO
Tool/software: Code Composer Studio
hi
i'm trying to port a ccs3 code under ccs7
after a bloody battle i obtained a full (functional?) code but i realized i need an assembled output too
ccs3 give also an .asm file like this
I reread your original post and saw:
Walter Mei said:"FinalBuildCmd=hex2000 -q -m -romwidth16 -o MyModule.s MyModule.out"
This is calling the C2000 hex utility. In v3, you were calling it as a post-build step. In v7, the utility is integrated into the project build system so you can configure it from the project properties:
You can use the options for the utility to configure the romwidth, quiet mode, output type etc.
Thanks
ki
hi Ki
thanks again
i've just enabled that flag, in fact i obtain an .hex file with S-record format
after your suggestions and considerations, i analyzed deeply the original project and i found a call to a function that convert hex file in asm, so it's not ccs3 who produces asm file but this function
so i apologize about this "misunderstanding" but problem little changes: how can i call this function, originally called at the end of compilation-linking, from the ccs7 environment?
thanks and regards
at the end i found a "workable" way
i used "Post Build Steps" functionality and i obtained what i need
thanks again about your help