memory.t

来自「GNU binutils是GNU交叉工具链中的一个源码包」· T 代码 · 共 40 行

T
40
字号
MEMORY{  TEXTMEM (ARX) : ORIGIN = 0x100, LENGTH = 32K  DATAMEM (AW)  : org = 0x1000, l = (64 * 1024)}SECTIONS{  . = 0;  .text :  {    /* The value returned by the ORIGIN operator is a constant.       However it is being assigned to a symbol declared within       a section.  Therefore the symbol is section-relative and       its value will include the offset of that section from       the start of memory.  ie the declaration:          text_start = ORIGIN (TEXTMEM);       here will result in text_start having a value of 0x200.       Hence we need to subtract the absolute value of the       location counter at this point in order to give text_start       a value that is truely absolute, and which coincidentally       will allow the tests in script.exp to work.  */ 	    text_start = ORIGIN(TEXTMEM) - ABSOLUTE (.);    *(.text)    *(.pr)    text_end = .;  } > TEXTMEM    data_start = ORIGIN (DATAMEM);  .data :  {    *(.data)    *(.rw)    data_end = .;  } >DATAMEM  fred = ORIGIN(DATAMEM) + LENGTH(DATAMEM);  }

⌨️ 快捷键说明

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