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

📄 sin_ok.cmd

📁 TMS320V5402 利用定时器中断产生正弦信号,最高频率300KHZ
💻 CMD
字号:
/***********************************************************************
** File Name: AIC10EVM.cmd
** Part Number: TLV320AIC10/11EVM–SW–00301
************************************************************************
** Copyright (c) Texas Instruments, Inc. 2000
************************************************************************
**
** Release History:
** Version Date Engr Description
** 1.00 10–11–2000 Wendy X Fang Original Release
**
************************************************************************
**
** Function:
** This is the TMS320C54xx DSK linker command and memory mapping
** file, which consists of programs for Linking (options have been
** defined through Code–Composer); and maps DSP memory and its
** sections.
**
***********************************************************************/
/***********************************************************************
** Link Files
***********************************************************************/
/******* Basic DSP & AIC10 Management/Setup Files *******/

/***********************************************************************
** Memory Map and Section Definition
***********************************************************************/
MEMORY
{
PAGE 0: /* program space */
		VECS: origin = 0x4080, length = 0x0080 /* 128bytes vector table space */
		PROG: origin = 0x0100, length = 0x2F00 /* 8K program memory space */
PAGE 1: /* data space */
		SCRA: origin = 0x0060, length = 0x0020 /* scratch pad mem space */
		STCK: origin = 0x2000, length = 0x0800 /* 1K words for stack */
		DAT1: origin = 0x2800, length = 0x0100 /* 256 words for sys data */
		DAT2: origin = 0x2900, length = 0x1000 /* 12K words for appl data */
}


SECTIONS     
{
		.vectors : {} > 	VECS PAGE 0 /* interrupt vector table */
		.text : {} >	 	PROG PAGE 0 /* program code */
	
		
		coef_s: {} > 		DAT2 PAGE 1 /* uninitialized vars for applications */
		coef_c: {} > 		DAT2 PAGE 1 /* uninitialized vars for applications */
		.data : {} >		PROG PAGE 0 /* initialized data */
		STACK: {} > 		STCK PAGE 1 /* software stack section */
		cos_vars : {} > 	DAT1 PAGE 1 /* uninitialized vars for DSP&AIC10 */
		sin_vars : {} > 	DAT1 PAGE 1 /* uninitialized vars for DSP&AIC10 */
		sin_x    :          align (512){} > 	DAT2 PAGE 1 
		
}
/***********************************************************************
** End of File –– AIC10EVM.cmd
***********************************************************************/












⌨️ 快捷键说明

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