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.

CCS/CCSTUDIO: Copying Code from Microprocessor to Computer

Part Number: CCSTUDIO

Tool/software: Code Composer Studio

Is there a way to Copy all of the code on a chip using CCS and a debugger? I have a chip with code loaded onto it and I can look at the assembly code in the disassembler but I want to take and save all of that data as either binary or Assembly language in a separate file. Is this possible with CCS?

  • Zachariah Westover said:
    save all of that data as either binary or Assembly language in a separate file. Is this possible with CCS?

    Yes. You can do this via the Memory Browser view (View -> Memory Browser). Bring up the context menu in the view and select the option to Save Memory. This will open a dialog wizard where you can select the data type (binary), start address, length, and where to save the binary file

    Thanks

    ki

  • Thanks, I had gotten halfway there and gotten lost.