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加载程序和c_int00函数的差别?



环境是6670EVM,core0和core1都是基于BIOS,如果用仿真器连接目标板,通过CCS分别加载.out文件,运行正常,但是通过ibl加载后不能正常运行。

经过较长一段时间的摸索,发现了一个问题,core1的执行会影响core0对共享内存的操作,即使core1在进入main函数后就停止(运行死循环)也会影响。所以怀疑是core1在启动后运行c_int00到main之间的这段程序影响了core0,因为通过CCS加载.out也是直接将PC指针指向了main函数,没有运行c_int00到main的代码。

那么,1.c_int00到main之间究竟运行了什么?

            2.IBL加载后,可否让core1直接从main开始运行?