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.

CCS7 Run to symbol 改为 code_start 。仿真时为什么不能跳到code_start。

CCS7 我想从code_start 开始仿真。要怎么样设置。

在CCS3.3中。将code entry point 为改为code_start  就可以从code_start开始仿真。CCS7没找到这个选项,要怎么样设置,谢谢

  • 您试试设置为_C_int00。

  • 改为 _C_int00。可以跳转到 

    _c_int00: .asmfunc stack_usage(0)
    ****************************************************************************
    * INITIALIZE STACK POINTER. *
    ****************************************************************************
    MOV SP,#__stack ; set to beginning of stack space  

    我以前的项目是

        .sect "codestart"

    code_start:

    //LB _c_int00 ; 不用 _c_int00
    LB _ResetEntry     //跳转到  _ResetEntry

    .emd

    _ResetEntry:
    LB Bootloader    //进入自己写的Bootloader  在Bootloader中,接收CAN总线发送上的HEX文件,调用FLASH_API 写 FLASH。实现CAN升级。

    目前的项目 是   

    LB _ResetEntry  ;这条语句,好像不能跳转到 _ResetEntry 。什么问题?

    谢谢