repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
sys
/
arch
/
evbsh3
/
conf
/
sh.x.ICE
blob
e702469808ee274224f17ed992660bef74d709cf
1
OUTPUT_FORMAT("coff-sh")
2
OUTPUT_ARCH(sh)
3
MEMORY
4
{
5
ram : o = 0x0c010000, l = 16M
6
}
7
SECTIONS
8
{
9
.text :
10
{
11
*(.text)
12
*(.strings)
13
_etext = . ;
14
} > ram
15
.tors :
16
{
17
___ctors = . ;
18
*(.ctors)
19
___ctors_end = . ;
20
___dtors = . ;
21
*(.dtors)
22
___dtors_end = . ;
23
} > ram
24
.data :
25
{
26
*(.data)
27
_edata = . ;
28
} > ram
29
.bss :
30
{
31
_bss_start = . ;
32
*(.bss)
33
*(COMMON)
34
_end = . ;
35
} > ram
36
.stack :
37
{
38
_stack = . ;
39
*(.stack)
40
} > ram
41
.stab 0 (NOLOAD) :
42
{
43
*(.stab)
44
}
45
.stabstr 0 (NOLOAD) :
46
{
47
*(.stabstr)
48
}
49
}