DSP-Applications-Using-C-and-the-TMS320C6x-DSK.pdf图书的随书源代码

源代码在线查看: c6211dsk.cmd

软件大小: 1443 K
上传用户: yjpynnpl
关键词: DSP-Applications-Using-C-and-the- x-DSK 320 TMS
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*C6211dsk.cmd Linker command file*/
				
				MEMORY
				{
				  VECS:       org=          0h,  len=       0x220
				  IRAM:       org = 0x00000220,  len = 0x0000FE00                           
				  SDRAM: 	  org = 0x80000000,  len = 0x01000000	
				}
				SECTIONS
				{
				  sin8000_table :> SDRAM
				
				  vectors  :> VECS		/*Created in vectors.asm */
				  .text    :> IRAM		/*Created by C Compiler  */
				  .bss     :> IRAM
				   coeffs  :> IRAM
				  .cinit   :> IRAM
				  .stack   :> IRAM
				  .sysmem  :> IRAM
				  .const   :> IRAM
				  .switch  :> IRAM
				  .far     :> IRAM
				  .cio     :> IRAM
				}
							

相关资源