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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [ld/] [scripttempl/] [z8000.sc] - Blame information for rev 840

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

Line No. Rev Author Line
1 38 julius
cat <
2
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3
OUTPUT_ARCH("${OUTPUT_ARCH}")
4
ENTRY(_start)
5
 
6
SECTIONS
7
{
8
.text ${BIG+ ${RELOCATING+ 0x0000000}} :
9
        {
10
          *(.text)
11
          *(.strings)
12
          *(.rdata)
13
        }
14
 
15
.ctors ${BIG+ ${RELOCATING+ 0x2000000}}  :
16
        {
17
          ${CONSTRUCTING+ ___ctors = . ;  }
18
          *(.ctors);
19
          ${CONSTRUCTING+ ___ctors_end = . ; }
20
          ___dtors = . ;
21
          *(.dtors);
22
          ${CONSTRUCTING+ ___dtors_end = . ; }
23
        }
24
 
25
.data ${BIG+ ${RELOCATING+ 0x3000000}} :
26
        {
27
           *(.data)
28
        }
29
 
30
.bss ${BIG+ ${RELOCATING+ 0x4000000}} :
31
        {
32
          ${RELOCATING+ __start_bss = . ; }
33
          *(.bss);
34
          *(COMMON);
35
          ${RELOCATING+ __end_bss = . ; }
36
        }
37
 
38
.heap ${BIG+ ${RELOCATING+ 0x5000000}} :
39
        {
40
          ${RELOCATING+ __start_heap = . ; }
41
          ${RELOCATING+ . = . + 20k  ; }
42
          ${RELOCATING+ __end_heap = . ; }
43
        }
44
 
45
.stack ${RELOCATING+ 0xf000 }  :
46
        {
47
          ${RELOCATING+ _stack = . ; }
48
          *(.stack)
49
          ${RELOCATING+ __stack_top = . ; }
50
        }
51
 
52
}
53
EOF
54
 
55
 
56
 
57
 

powered by: WebSVN 2.1.0

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