I am working on Cortex M0. CCS under usage is 5.3.0.00090 and library is rtsv6M0_T_le_eabi.lib.
Written sample program, used _c_int00 library routine when power on reset interrupt occurs.
Compiled the code, generated .out and converted .out into Intel Hex format using armhex.exe utility.
While working on SimVision, I faced following problem:
1. The CPU was not reaching to main function.
2. We debugged it and found that _c_int00 routine reads SRAM location and that SRAM location not initialized to zero.
Due to which nothing works.
3. We initialized SRAM with zero's using SimVision and now CPU reaches to main function and executing main function.
I wanted to debug this problem so tried to get disassembly list file of _c_int00 function however I couldn't generate it.
My queries are as below:
Is it possible to generate list file of _c_int00 library function? If yes then Can you please let me know procedure to generate list file of _c_int00 library function.
If not then can you share source code of it?
Thanks in advance.