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

📄 flash.ld.sram

📁 针对freescale的coldfire系列mcu的开源bootloader源码colilo的优化代码
💻 SRAM
字号:
MEMORY {	flash	: ORIGIN = 0xffe00000, LENGTH = 0x00100000  /* 1MB of flash (A[19] pulled high) */ 	ram 	: ORIGIN = 0x00600000, LENGTH = 0x00040000  /* 256Kbytes of sdram */	sram	: ORIGIN = 0x20000000, LENGTH = 0x00018000  /* 96kbytes of sram */}SECTIONS {        .text : {		_stext = . ;        	*(.text)		*(.rodata)		_etext = . ;        } > flash        .data : AT (ADDR(.text) + SIZEOF(.text)) {		_sdata = . ;        	*(.data)        			_edata = . ;        } > ram                .fastdata : AT (ADDR(.text) + SIZEOF(.text) + SIZEOF(.data)){        	_sfdata = . ;        	*(.fdata)        	*(.data.flasher_data)        	. = ALIGN(0x4) ;         	*(.data.flasher_code)		. = ALIGN(0x4) ;        	_efdata = . ;        } > sram         .bss : AT (ADDR(.text) + SIZEOF(.text) + SIZEOF(.data) + SIZEOF(.fastdata)) {		_sbss = . ;		*(.bss)		*(COMMON)		_ebss = . ;	} > ram}

⌨️ 快捷键说明

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