针对freescale的coldfire系列mcu的开源bootloader源码colilo的优化代码

源代码在线查看: flash.ld

软件大小: 2666 K
上传用户: afaslgo
关键词: bootloader freescale coldfire colilo
下载地址: 免注册下载 普通下载 VIP

相关代码

				MEMORY {					flash	: ORIGIN = 0xffe00000, LENGTH = 0x4000					ram	: ORIGIN = 0x003e0000, LENGTH = 0x20000	/* Last 128K of low 4M SDRAM */				}								SECTIONS {								        .text : {						_stext = . ;				        	*(.text)						*(.rodata)						_etext = . ;				        } > flash								        .data : AT (ADDR(.text) + SIZEOF(.text)) {						_sdata = . ;				        	*(.data)						_edata = . ;				        } > ram 								        .bss : AT (ADDR(.text) + SIZEOF(.text) + SIZEOF(.data)) {						_sbss = . ;						*(.bss)						*(COMMON)						_ebss = . ;					} > ram 				}											

相关资源