_c_int00是c语言程序的入口。我们知道,在DSP启动后,系统会进入复位中断,此时复位中断服务函数为c_init00,此函数用于建立C环境,为进入main()函数进行系统初始化,主要工作是建立堆栈,初始化全局变量等。全局变量的初始化:如果程序在链接时采用-c选项,则编译链接后的可执行程序会将全局变量的初始化放在c_init00()...
This warning is given when a symbol other then _c_int00 is defined as the code entry point of the project. For these examples, the symbol code_start is the first code that is executed after exiting the boot ROM code and thus is defined as the entry point via the –e linker option. ...
_c_int00是c语言程序的入口。我们知道,在DSP启动后,系统会进入复位中断,此时复 位中断服务函数为c_init00,此函数用于建立C环境,为进入main()函数进行系统初始化, 主要工作是建立堆栈,初始化全局变量等。全局变量的初始化:如果程序在链接时采用-c 选项,则编译链接后的可执行程序会将全局变量的初始化放在c_init00...