Updated Malay translation for the bfd sub-directory
[binutils-gdb.git] / ld / testsuite / ld-arm / non-contiguous-arm7.ld
blob9934fdfd3a46dc200444304ac0279ba1cbf4d305
1 /*
2  The section .bss.MY_BUF won't fit in RAM1 or RAM2
3 */
5 MEMORY
7   ROM  (rx)    : ORIGIN = 0x8000000,    LENGTH = 10K
8   RAM1 (xrw)   : ORIGIN = 0x10000000,   LENGTH = 64K
9   RAM2 (xrw)   : ORIGIN = 0x20000000,   LENGTH = 96K
12 SECTIONS
14   .text :
15   {
16     KEEP(*(.text.foo)) ;
17   } >ROM
19   .bss :
20   {
21     _sbss = .;
22     *(.bss) *(.bss*) ;
23     _ebss = .;
24   } >RAM1
26   .bss_ram2 :
27   {
28     _sbss_ram2 = .;
29     *(.bss) *(.bss*) ;
30     _ebss_ram2 = .;
31   } >RAM2