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

📄 uartapp.lds

📁 Basic Application Loading over the Serial Interface for the DaVinci TMS320DM644x
💻 LDS
字号:
/*
 *  Desc: Linker command file ubl application program.
 *  Auth: Daniel Allred (d-allred@ti.com)
 *  Vers: 1.0 on 08-Nov-2006
 */

ENTRY(boot)
SECTIONS {
	. = 0x00008020;
	
	.rodata	: AT ( 0x0 )
	{
		*(.rodata*)
		*(.rodata)
		. = ALIGN(4);
	}	

	.data		: AT ( LOADADDR(.rodata) + SIZEOF(.rodata) )
	{
		*(.data)
		. = ALIGN(4);
	}
	
	. -= 0x8000;
	.text		: AT ( LOADADDR(.data) + SIZEOF(.data) )
	{
		*(.text)
		. = ALIGN(4);
	}
	.boot		: AT ( LOADADDR(.text) + SIZEOF(.text) )
	{
		*(.boot)
		. = ALIGN(4);
	}

	. += 0x8000;
	.bss		:
	{
		*(.bss) *(COMMON)
		. = ALIGN(4);
	}
	
	__topstack = 0xC000 - 0x4;
	
	. = 0x02000000;
   .aemif 	:
   {
   	*(.aemif)
   }

   . = 0x80000000;
   .ddrram	:
   {
   	*(.ddrram)
   }					
}

⌨️ 快捷键说明

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