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