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.ROM
blob
8dc1edb3884d0937ec1028403b33496fdc6f283d
1
OUTPUT_FORMAT("coff-sh")
2
OUTPUT_ARCH(sh)
3
MEMORY
4
{
5
ram : o = 0x80010000, l = 16M
6
}
7
SECTIONS
8
{
9
.text 0xa0000000 :
10
{
11
*(.text)
12
*(.strings)
13
_etext = . ;
14
}
15
.data :
16
{
17
*(.data)
18
_edata = . ;
19
}
20
.bss 0x8c010000 :
21
{
22
_bss_start = . ;
23
*(.bss)
24
*(COMMON)
25
_end = . ;
26
}
27
.stack :
28
{
29
_stack = . ;
30
*(.stack)
31
}
32
}