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