Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git] / ld / scripttempl / elf32xc16xl.sc
blob65a50eb39549398af200ffc712eec0e585546616
1 # Copyright (C) 2014-2016 Free Software Foundation, Inc.
2
3 # Copying and distribution of this file, with or without modification,
4 # are permitted in any medium without royalty provided the copyright
5 # notice and this notice are preserved.
7 cat <<EOF
8 /* Copyright (C) 2014-2016 Free Software Foundation, Inc.
10    Copying and distribution of this script, with or without modification,
11    are permitted in any medium without royalty provided the copyright
12    notice and this notice are preserved.  */
14 OUTPUT_FORMAT("${OUTPUT_FORMAT}")
15 OUTPUT_ARCH(${ARCH})
16 ${RELOCATING+ENTRY ("_start")}
17 MEMORY
19         vectarea : o =0xc00000, l = 0x0300 
20         
21         introm    : o = 0xc00300, l = 0x16000
22         /* The stack starts at the top of main ram.  */
23         
24         dram   : o = 0x8000 , l = 0xffff
25         /* At the very top of the address space is the 8-bit area.  */
26                 
27          ldata  : o =0x4000 ,l = 0x0200
29 SECTIONS
31 /*.vects :
32         {
33         *(.vects)
34        } ${RELOCATING+ > vectarea} */
35 .init :
36         {
37           *(.init)
38         } ${RELOCATING+ >introm}
40 .text :
41         {
42           *(.rodata) 
43           *(.text.*)
44           *(.text)
45                   ${RELOCATING+ _etext = . ; }
46         } ${RELOCATING+ > introm}
47 .data :
48         {
49           *(.data)
50           *(.data.*)
51           
52           ${RELOCATING+ _edata = . ; }
53         } ${RELOCATING+ > dram}
55 .bss :
56         {
57           ${RELOCATING+ _bss_start = . ;}
58           *(.bss)
59           *(COMMON)
60           ${RELOCATING+ _end = . ;  }
61         } ${RELOCATING+ > dram}
63  .ldata :
64          {
65           *(.ldata)
66          } ${RELOCATING+ > ldata}
68   
69   .vects :
70           {
71           *(.vects)
72        } ${RELOCATING+ > vectarea}
76 EOF