f2808_bios_ram.cmd

来自「TI公司提供2812FLASH烧写的PDF文档,初学可以看一下.」· CMD 代码 · 共 31 行

CMD
31
字号
/**********************************************************************
* File: f2808_BIOS_ram.cmd -- Linker command file for DSP/BIOS code
* with DSP in Boot to H0 SARAM bootmode.
*
* History: 02/11/05 - original (D. Alter)
**********************************************************************/


/**************************************************************/
/* Link all user defined sections                             */
/**************************************************************/
SECTIONS
{

/*** Code Security Password Locations ***/
   csm_rsvd          : > CSM_RSVD,         PAGE = 0, TYPE = DSECT  /* Not used in RAM example */
   passwords         : > PASSWORDS,        PAGE = 0, TYPE = DSECT  /* Not used in RAM example */

/*** User Defined Sections ***/
   codestart         : > BEGIN_M0,         PAGE = 0                /* Used by file CodeStartBranch.asm */

                         /* Section ramfuncs used by InitFlash() in SysCtrl.c */ 
   secureRamFuncs    :   LOAD = H0SARAM,   PAGE = 0                /* Can be ROM */
                         RUN = L0SARAM,    PAGE = 1                /* Must be CSM secured RAM */
                         LOAD_START(_secureRamFuncs_loadstart),
                         LOAD_END(_secureRamFuncs_loadend),
                         RUN_START(_secureRamFuncs_runstart)
}

/******************* end of file ************************/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?