blob: 1e0203f45b37ed3e92612235459dc41c62682e63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
TARGET(m88kbcs)
OUTPUT_FORMAT(m88kbcs)
OUTPUT_ARCH(m88k)
ENTRY(__start)
SEARCH_DIR(/lib)
SEARCH_DIR(/usr/lib)
SEARCH_DIR(/usr/local/lib)
SECTIONS
{
.text 0x10000 + SIZEOF_HEADERS :
{
CREATE_OBJECT_SYMBOLS
/* If relocating */
__.text.start = .;
__.init.start = .;
LONG(0xf400c001)
__.init.end = .;
/* End if relocating */
*(.text)
/* If relocating */
__.tdesc_start = .;
*(.tdesc)
__.text_end = .;
__.initp.start = .;
__.initp.end =.;
_etext =.;
/* End if relocating */
}
.data SIZEOF(.text) + ADDR(.text) + 0x400000:
{
*(.data)
__CTOR_LIST__ = .;
*(CTOR)
LONG(0);
__DTOR_LIST__ = . ;
*(DTOR)
LONG(0);
*(.comment)
_edata = .;
}
.bss SIZEOF(.data) + ADDR(.data) :
{
*(.bss)
*(COMMON)
_end = .;
___end = .;
}
}
|