]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/testsuite/binutils-all/pr25662.ld
MIPS/binutils/testsuite: Correct mips.exp test ABI/emul/endian arrangement
[thirdparty/binutils-gdb.git] / binutils / testsuite / binutils-all / pr25662.ld
1 ENTRY(_start)
2 MEMORY
3 {
4 RAM : ORIGIN = 0x0000, LENGTH = 0x0FFF
5 ROM : ORIGIN = 0x1000, LENGTH = 0x0FFF
6 }
7
8 SECTIONS
9 {
10 .data : { *(.data) } > RAM AT>ROM
11
12 .text : { *(.text) } > ROM
13
14 .bss : { *(.bss) } > RAM
15 }