编译提示  
Description        Resource        Path        Location        Type 
#10104 undefined symbol "BOOTROM" used in expression        NK5730_AD_RAMcfg.cmd        /NK5730_AD/BIOS        line 78        C/C++ Problem 
这是怎么回事呀? 我在.s28文件里发现,有对这个"BOOTRAM"的定义 
;; ======== MEM_Obj BOOTROM ======== 
;; On-Chip Boot ROM 
;; 
;; MEM_Obj BOOTROM (len, iAllocHeap, iSegZero, iHeapId) 
        .global BOOTROM 
        .asg 01fc0H, _len 
        .asg 00H, _iAllocHeap 
        .asg L03SARAM, _iSegZero 
        .asg segment_name, _iHeapId 
        MEM_Obj 1, BOOTROM, 0, _len, _iAllocHeap, _iSegZero, _iHeapId 
.s28已经添加到工程了呀, 刚入门DSP,还请多指教。项目里用到BIOS。 |