关于OMAPL138 BOOT,我进行了如下设置
同时在程序中加入了如下汇编程序
.global _my_boot
.sect "my_boot_sect"
.align 128
.global _c_int00
_my_boot:
B _c_int00
NOP 5
编译的时候,一直是 #10062-D: entry-point symbol "_my_boot" undefined错误,明明已经定义了
Shine:
试试把_my_boot前面的下划线去掉。
user4072129:
回复 Shine:
改了一下,但又报这个错误
undefined first referenced symbol in file ——— —————- c_int00 ./myboot.obj
Shine:
回复 user4072129:
c_int00是内嵌函数,前面要加_的,_c_int00
user4072129:
回复 Shine:
我加的
.global my_boot .sect "my_boot_sect" .align 128 .global _c_int00my_boot: B _c_int00 NOP 5
还是报错
Shine:
回复 Shine:
rts库添加了么?
user4072129:
回复 Shine:
请问这个是怎么添加的
user4072129:
回复 Shine:
你好 我添加了以下几种rts库 都报错
Shine:
回复 user4072129:
ccs->Project Properties → CCS Build → C6000 linker → File search path → Include library file or command file as input
Shine:
回复 Shine:
为什么你的库的属性显示是pspice model. rts库在C:\ti\ccsv6\tools\compiler\c6000_x.x.x\lib目录下。
user4072129:
回复 Shine:
那应该是什么属性呢?