Home | History | Annotate | Line # | Download | only in conf
shl.x.ICE revision 1.3
      1  1.1    itojun OUTPUT_FORMAT("coff-shl")
      2  1.1    itojun OUTPUT_ARCH(sh)
      3  1.1    itojun MEMORY
      4  1.1    itojun {
      5  1.1    itojun   ram : o = 0x0c010000, l = 16M
      6  1.1    itojun }
      7  1.1    itojun SECTIONS
      8  1.1    itojun {
      9  1.1    itojun   .text :
     10  1.1    itojun   {
     11  1.1    itojun     *(.text)
     12  1.1    itojun     *(.strings)
     13  1.3  uebayasi     _etext = . ;
     14  1.1    itojun   }  > ram
     15  1.1    itojun   .tors :
     16  1.1    itojun   {
     17  1.1    itojun     ___ctors = . ;
     18  1.1    itojun     *(.ctors)
     19  1.1    itojun     ___ctors_end = . ;
     20  1.1    itojun     ___dtors = . ;
     21  1.1    itojun     *(.dtors)
     22  1.1    itojun     ___dtors_end = . ;
     23  1.1    itojun   } > ram
     24  1.1    itojun   .data :
     25  1.1    itojun   {
     26  1.1    itojun     *(.data)
     27  1.3  uebayasi     _edata = . ;
     28  1.1    itojun   }  > ram
     29  1.1    itojun   .bss :
     30  1.1    itojun   {
     31  1.3  uebayasi     _bss_start = . ;
     32  1.1    itojun     *(.bss)
     33  1.1    itojun     *(COMMON)
     34  1.3  uebayasi     _end = . ;
     35  1.1    itojun   }  > ram
     36  1.1    itojun   .stack   :
     37  1.1    itojun   {
     38  1.3  uebayasi     _stack = . ;
     39  1.1    itojun     *(.stack)
     40  1.1    itojun   }  > ram
     41  1.1    itojun   .stab 0 (NOLOAD) :
     42  1.1    itojun   {
     43  1.1    itojun     *(.stab)
     44  1.1    itojun   }
     45  1.1    itojun   .stabstr 0 (NOLOAD) :
     46  1.1    itojun   {
     47  1.1    itojun     *(.stabstr)
     48  1.1    itojun   }
     49  1.1    itojun }
     50