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

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [libgloss/] [i960/] [mon960.ld] - Blame information for rev 9

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 9 jlechner
GROUP(-lc -lgcc -lmon960)
2
 
3
SECTIONS
4
{
5
    . = 0xa0008000;
6
    .text :
7
    {
8
         CREATE_OBJECT_SYMBOLS
9
        *(.text)
10
         _etext = .;
11
 
12
        ___CTOR_LIST__ = .;
13
        LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)
14
        *(.ctors)
15
        LONG(0)
16
        ___CTOR_END__ = .;
17
        ___DTOR_LIST__ = .;
18
        LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2)
19
        *(.dtors)
20
        LONG(0)
21
        ___DTOR_END__ = .;
22
    }
23
    .data SIZEOF(.text) + ADDR(.text):
24
    {
25
        *(.data)
26
        CONSTRUCTORS
27
         _edata = .;
28
    }
29
    .bss SIZEOF(.data) + ADDR(.data):
30
    {
31
         _bss_start = .;
32
        *(.bss)
33
        *(COMMON)
34
         _end = .;
35
    }
36
}

powered by: WebSVN 2.1.0

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