projects
/
arm
/
overo-bwio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add start file
[arm/overo-bwio.git]
/
ts7800.ld
1
ENTRY(ts7800_start)
2
3
SECTIONS
4
{
5
. = 0x8000;
6
7
.text 0x8000 : /* The actual instructions. */
8
{
9
obj/ts7800.o(.text)
10
*(.text)
11
*(.got)
12
*(.got.plt)
13
*(.rodata)
14
*(.rodata.*)
15
*(.glue_7)
16
*(.glue_7t)
17
*(.note.gnu.build-id)
18
}
19
20
.data : /* Initialized data. */
21
{
22
__data_start__ = .;
23
*(.data)
24
__data_end__ = .;
25
}
26
27
.bss : /* Uninitialized data. */
28
{
29
__bss_start__ = .;
30
*(.bss)
31
*(COMMON)
32
__bss_end__ = .;
33
}
34
}