repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Updated Malay translation for the bfd sub-directory
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-arm
/
non-contiguous-arm7.ld
blob
9934fdfd3a46dc200444304ac0279ba1cbf4d305
1
/*
2
The section .bss.MY_BUF won't fit in RAM1 or RAM2
3
*/
4
5
MEMORY
6
{
7
ROM (rx) : ORIGIN = 0x8000000, LENGTH = 10K
8
RAM1 (xrw) : ORIGIN = 0x10000000, LENGTH = 64K
9
RAM2 (xrw) : ORIGIN = 0x20000000, LENGTH = 96K
10
}
11
12
SECTIONS
13
{
14
.text :
15
{
16
KEEP(*(.text.foo)) ;
17
} >ROM
18
19
.bss :
20
{
21
_sbss = .;
22
*(.bss) *(.bss*) ;
23
_ebss = .;
24
} >RAM1
25
26
.bss_ram2 :
27
{
28
_sbss_ram2 = .;
29
*(.bss) *(.bss*) ;
30
_ebss_ram2 = .;
31
} >RAM2
32
}