Tool/software: TI C/C++ Compiler
Hi, In CCS7 properties I can specify program entry point.
But I wonder what's the difference between this setting and .cmd file.
In CMD file I have below codes, it
BEGIN : origin = 0x3F7FF6, length = 0x000002
codestart : > BEGIN PAGE = 0
In codestartbranch.asm there is code below:
.sect "codestart"
code_start:
.if WD_DISABLE == 1
LB wd_disable ;Branch to watchdog disable code
.else
LB _c_int00 ;Branch to start of boot.asm in RTS library
.endif
I think through these code we've already assigned code_start to 0x3F7FF6, and boot to flash is boot to 0x3F7FF6, so it's the entry point. I wonder if I still have to configure entry point in CCS. What if I specify the entry point to global symbol other than code_start, what will happen?