OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [i960/] [cvme961/] [startup/] [linkcmds] - Blame information for rev 30

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  This file contains directives for the GNU linker which are specific
3
 *  to the Cyclone CVME960/CVME961 boards.
4
 *
5
 *  COPYRIGHT (c) 1989-1999.
6
 *  On-Line Applications Research Corporation (OAR).
7
 *
8
 *  The license and distribution terms for this file may be
9
 *  found in the file LICENSE in this distribution or at
10
 *  http://www.OARcorp.com/rtems/license.html.
11
 *
12
 *  $Id: linkcmds,v 1.2 2001-09-27 11:59:57 chris Exp $
13
 */
14
 
15
MEMORY
16
        {
17
            ram : org = 0x0, l = 1M
18
        }
19
 
20
SECTIONS
21
{
22
        .text 0x10000 :
23
        {
24
            text_start = . ;
25
            _text_start = . ;
26
            *(.text)
27
        . = ALIGN (16);
28
 
29
        *(.eh_fram)
30
        *(.gnu.linkonce.t*)
31
 
32
        . = ALIGN (16);
33
 
34
        /*
35
         * C++ constructors
36
         */
37
        __CTOR_LIST__ = .;
38
        LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
39
        *(.ctors)
40
        LONG(0)
41
        __CTOR_END__ = .;
42
        __DTOR_LIST__ = .;
43
        LONG((__DTOR_END__ - __DTOR_LIST__) / 4 - 2)
44
        *(.dtors)
45
        LONG(0)
46
        __DTOR_END__ = .;
47
 
48
        _rodata_start = . ;
49
        *(.rodata)
50
        *(.gnu.linkonce.r*)
51
        _erodata = ALIGN( 0x10 ) ;
52
        etext = ALIGN( 0x10 ) ;
53
/*            _etext = .; -- conflicts */
54
        }
55
        .data ADDR( .text ) + SIZEOF( .text ):
56
        {
57
            data_start = . ;
58
            _data_start = .;
59
            *(.data)
60
            edata = ALIGN( 0x10 ) ;
61
/*            _edata = .; -- conflicts */
62
        }
63
        .bss ADDR( .data ) + SIZEOF( .data ):
64
        {
65
            bss_start = . ;
66
            _bss_start = . ;
67
            *(.bss)
68
            *(COMMON)
69
            end = . ;
70
            _end = . ;
71
        }
72
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.