flash.ld

来自「摩托罗拉冷火系列bootloader源码」· LD 代码 · 共 29 行

LD
29
字号
MEMORY {	flash	: ORIGIN = 0xfff00000, LENGTH = 0x00100000	ram 	: ORIGIN = 0x003c0000, 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}

⌨️ 快捷键说明

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