ex7p3.cmd

来自「用于DSK5416的程序」· CMD 代码 · 共 27 行

CMD
27
字号
/*******************************************************************
* DSK5416 Command File for Example 7.3
*******************************************************************/


MEMORY
	{
        PAGE 0:               /* Pgm space */
		VECS    : origin = 0xff80, length = 0x0080	/* vector table space */
		PROG1   : origin = 0x1000, length = 0x1000  	/* Pgm mem space */
		PROG2   : origin = 0x2000, length = 0x100  	/* Pgm mem space */
		
        PAGE 1:              /* Data space */
		DMEM1  : origin = 0x0500, length = 0x0400	/* 1K words */
		DMEM2  : origin = 0x0A00, length = 0x0400	/* 1K words */
	}

SECTIONS
	{
		.vectors	: {} > VECS    PAGE 0		/* Interrupt Vector table */
		.text		: {} > PROG1   PAGE 0		/* Program code goes here */
		.coeff		: {} > PROG2   PAGE 0		/* Filter coefficients */
		.samples	: {} > DMEM1   PAGE 1 		/* Input samples */
		.bss		: {} > DMEM2   PAGE 1		/* Filtered samples */
	}

⌨️ 快捷键说明

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