vc5410.cmd

来自「DSP5000实验箱上完整的实验程序,很有参考价值」· CMD 代码 · 共 42 行

CMD
42
字号
/***********************************************************************
** Memory Map and Section Definition
***********************************************************************/
MEMORY
{

PAGE 0: /* program space */

	VECS	: 	origin = 0xFF80, length = 0x80 /* 128bytes vector table space */
	PROG	: 	origin = 0x120, length = 0x1000 /* 8K program memory space */

PAGE 1: /* data space */

	S_RAM 	: 	origin = 0x0080, length = 0x020 /* scratch pad mem space */
	ON_DRAM	:	origin = 0x0a0, length = 0x60
	STCK	: 	origin = 0x1120, length = 0x41e0 /* 1K words for stack */
	DAT1	: 	origin = 0x5f00, length = 0x80 /* 256 words for sys data */
	DAT2	: 	origin = 0x6000, length = 0x2000 /* 12K words for appl data */
}


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











⌨️ 快捷键说明

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