burner.cmd
来自「CCS2.0以上版本下的一个烧写Flash的源代码(flash_burner)!」· CMD 代码 · 共 44 行
CMD
44 行
/*****************************************************************************/
/* Linker Command File for DSC21 Software */
/*****************************************************************************/
/*****************************************************************************
*
* $Revision: 1.1.1.1 $
*
* $History: $
*
******************************************************************************/
/* non relocatable */
/* compatible with < 1.20 coff files */
-stack 0x0200 /* C stack size */
-heap 0x200 /* heap size */
-l C:\ti\TMS470\cgtools\lib\rts32e.lib
MEMORY
{
CPUSRAM:org = 0x20000000 len = 0x00080000 /* data memory */
}
/* define where the sections reside in memory */
SECTIONS
{
/*.intvecs: {} > CPUSRAM interrupt vectors at 0 */
.bss : {
} > CPUSRAM /* allocate .bss in data mem */
.data : {
} > CPUSRAM /* allocate .data */
.stack : {
} > CPUSRAM /* stack also in RAM space */
.cinit : {
} > CPUSRAM /* initialization table */
.text : {
} > CPUSRAM /* actual code locations */
.const : {
} > CPUSRAM /* and constant declarations */
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?