c54x.cmd

来自「DSP芯片TMS320C5416实验程序」· CMD 代码 · 共 40 行

CMD
40
字号
/***********************************************************************
** Link Files
***********************************************************************/

/***********************************************************************
** Memory Map and Section Definition
***********************************************************************/
MEMORY
{
	PAGE 0: /* program space */
		VECS: origin = 0x0080, length = 0x007f /* 128bytes vector table space */
		PROG: origin = 0x0100, length = 0x2000 /* 8K program memory space */
	PAGE 1: /* data space */
		SCRA: origin = 0x0060, length = 0x001f /* scratch pad mem space */
		DAT1: origin = 0x2100, length = 0x5000 /* 16K words for appl data */
}


SECTIONS     
{
	.vectors : {} > VECS PAGE 0 			/* interrupt vector table */
	.text : {} > PROG PAGE 0 				/* program code */
	.data : {} > PROG PAGE 0 				/* initialized data */
	.stack : {} > DAT1 PAGE 1 				/* software stack section */
	.bss : {} > DAT1 PAGE 1 				/* uninitialized vars for applications */
}













⌨️ 快捷键说明

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