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
Update release-README after completing the 2.43 release.
[binutils-gdb.git]
/
binutils
/
testsuite
/
binutils-all
/
pr25662.ld
blob
19ef1391f8d998ce1a8ce38d5498a6f5895f223d
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
}