📄 burner.cmd
字号:
/*****************************************************************************/
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -