⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 c54x.cmd

📁 DSP芯片TMS320C5416实验程序
💻 CMD
字号:
/***********************************************************************
** 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -