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

源代码在线查看: flash.ld

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

相关代码

								MEMORY {					flash	: ORIGIN = 0x10c00000, LENGTH = 0x00010000					ram 	: ORIGIN = 0x007c0000, LENGTH = 0x00040000			/* last 256Kbytes of 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				}							

相关资源