f2812_bios_flash.cmd

来自「瑞泰实验箱例程-2812,」· CMD 代码 · 共 29 行

CMD
29
字号
/**********************************************************************
* File: f2812_flash.cmd -- Linker command file for Boot to Flash bootmode.
* History: 09/08/03 - original (based on DSP28 header files v1.00, D. Alter)
**********************************************************************/


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

/*** Code Security Password Locations ***/
   passwords         : > PASSWORDS,        PAGE = 0        /* Used by file passwords.asm */
   csm_rsvd          : > CSM_RSVD,         PAGE = 0        /* Used by file passwords.asm */

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

                                          /* Section ramfuncs used by InitFlash() in SysCtrl.c */
   secureRamFuncs    :   LOAD = FLASH_AB,  PAGE = 0        /* can be ROM */ 
                         RUN = L0SARAM,    PAGE = 0        /* 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 + -
显示快捷键?