codec_c.cmd

来自「c5x中关于codec的实验」· CMD 代码 · 共 31 行

CMD
31
字号
MEMORY
{
   PAGE 0: VECS:     	origin = 0080h, length = 0080h
           PRAM:     	origin = 1000h, length = 1000h

   PAGE 1: STACK:    	origin = 0100h, length = 0400h
           CONST_TBL:	origin = 0500h, length = 0400h
           DARAM:    	origin = 2000h, length = 2000h
}

/*****************************************************************************/
/* DSP Memory Allocation                                                     */
/*****************************************************************************/

SECTIONS
{
	.cinit		:> PRAM 		PAGE 0
	.text		:> PRAM 		PAGE 0
	vectors		:> VECS  		PAGE 0
    
	init_var	:> PRAM  		PAGE 0
   	
	.stack		:> STACK 		PAGE 1
	.const		:> DARAM 		PAGE 1
	.data		:> DARAM 		PAGE 1
	.bss		:> DARAM 		PAGE 1
	.cio		:> DARAM		PAGE 1
	.switch		:> DARAM 		PAGE 1

	Init_table	:> CONST_TBL 	PAGE 1
}

⌨️ 快捷键说明

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