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
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
sys
/
arch
/
hpcsh
/
conf
/
shl-coff.x
blob
d2e2e2a599652694448baa389f5f9b4ee10b8788
1
/* $NetBSD: shl-coff.x,v 1.3 2001/11/20 12:56:28 lukem Exp $ */
2
3
OUTPUT_FORMAT("coff-shl")
4
OUTPUT_ARCH(sh)
5
6
MEMORY
7
{
8
ram : o = 0x8C001000, l = 16M
9
}
10
11
SECTIONS
12
{
13
.text :
14
{
15
_ftext = . ;
16
*(.text)
17
*(.rodata)
18
*(.strings)
19
} > ram
20
_etext = . ;
21
PROVIDE (_etext = .);
22
. = ALIGN(8);
23
.data :
24
{
25
_fdata = . ;
26
PROVIDE (_fdata = .);
27
*(.data)
28
CONSTRUCTORS
29
} > ram
30
_edata = . ;
31
PROVIDE (_edata = .);
32
. = ALIGN(8);
33
.bss :
34
{
35
_fbss = . ;
36
PROVIDE (_fbss = .);
37
*(.bss)
38
*(COMMON)
39
} > ram
40
. = ALIGN(4);
41
_end = . ;
42
PROVIDE (_end = .);
43
}