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.

TMS320F280049C: 怎么在cmd文件中将.lib库中的部分文件链接至ram运行区?

Part Number: TMS320F280049C

各位老师,目前我知道怎么把.lib文件链接至ram区,比如像下面的CMD里的section段里的ram运行区里做下面的配置

.........

 GROUP
        {
            .TI.ramfunc
            { -l F021_API_F2837xS_FPU32.lib}

        } LOAD > FLASHD,
          RUN  > RAMLS4,
          LOAD_START(_RamfuncsLoadStart),
          LOAD_SIZE(_RamfuncsLoadSize),
          LOAD_END(_RamfuncsLoadEnd),
          RUN_START(_RamfuncsRunStart),
          RUN_SIZE(_RamfuncsRunSize),
          RUN_END(_RamfuncsRunEnd),
          PAGE = 0   

.........

但我现在有个库是比较大的,ram又比较小,我只希望把库里的部分文件放进ram区进行加速运算,应该怎么处理呢? 比如xx.lib里有A.obj,B.obj和C.obj三个文件,我只想把A.obj放进去,应该怎么做呢?