Home | History | Annotate | Line # | Download | only in conf
sh.x.ROM revision 1.1.16.1
      1       1.1   itojun OUTPUT_FORMAT("coff-sh")
      2       1.1   itojun OUTPUT_ARCH(sh)
      3       1.1   itojun MEMORY
      4       1.1   itojun {
      5       1.1   itojun   ram : o = 0x80010000, l = 16M
      6       1.1   itojun }
      7       1.1   itojun SECTIONS
      8       1.1   itojun {
      9       1.1   itojun   .text 0xa0000000 :
     10       1.1   itojun   {
     11       1.1   itojun     *(.text)
     12       1.1   itojun     *(.strings)
     13  1.1.16.1  thorpej      _etext = . ;
     14  1.1.16.1  thorpej   }
     15       1.1   itojun   .data :
     16       1.1   itojun   {
     17       1.1   itojun     *(.data)
     18  1.1.16.1  thorpej      _edata = . ;
     19  1.1.16.1  thorpej   }
     20       1.1   itojun   .bss 0x8c010000 :
     21       1.1   itojun   {
     22  1.1.16.1  thorpej      _bss_start = . ;
     23       1.1   itojun     *(.bss)
     24       1.1   itojun     *(COMMON)
     25  1.1.16.1  thorpej      _end = . ;
     26  1.1.16.1  thorpej   }
     27       1.1   itojun   .stack   :
     28       1.1   itojun   {
     29  1.1.16.1  thorpej      _stack = . ;
     30       1.1   itojun     *(.stack)
     31  1.1.16.1  thorpej   }
     32       1.1   itojun }
     33