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.

基于BIOS的Align DSP entry point to 1Kbyte address

Other Parts Discussed in Thread: CCSTUDIO

       专家好,在Tony Tang的PPT中有关于让入口地址1k byte对齐的说明,如下图:

   

  • 重发下图片内容:

     Align DSP entry point to 1Kbyte address in DSP linker command file.
    // Specify fix address for Entry Point _c_int00 in DSP BIOS based system:
    SECTIONS
    {
    .vect:  {C:\CCStudio_v3.3\bios_5_32_01\packages\ti\bios\lib\bios.bios.a67P(.sysinit)},  load=0xc0000000
    }
    // Specify 1024byte aligned address for Entry Point _c_int00 in DSP BIOS based system:
    SECTIONS
    {
    .vect:
    {
    . = align(1024);   
    C:\CCStudio_v3.3\bios_5_32_01\packages\ti\bios\lib\bios.bios.a67P(.sysinit)
    } > L2RAM
    }

     

    以上我不理解,我想把我的程序调整为入口点1k字节对齐,怎么做呢?

    我是要用ARM核加载启动DSP核。

  • 我的CMD文件是配置BIOS时CCS自动生成的,不知道怎么修改