Update release-README after completing the 2.43 release.
[binutils-gdb.git] / binutils / testsuite / binutils-all / pr25662.ld
blob19ef1391f8d998ce1a8ce38d5498a6f5895f223d
1 ENTRY(_start)
2 MEMORY
4   RAM   : ORIGIN = 0x0000, LENGTH = 0x0FFF
5   ROM   : ORIGIN = 0x1000, LENGTH = 0x0FFF
8 SECTIONS
10   .data : { *(.data) } > RAM AT>ROM
12   .text : { *(.text) } > ROM
14   .bss : { *(.bss) } > RAM