sh.x.RAM revision 1.1
11.1SitojunOUTPUT_FORMAT("coff-sh")
21.1SitojunOUTPUT_ARCH(sh)
31.1SitojunMEMORY
41.1Sitojun{
51.1Sitojun  ram : o = 0x8C010000, l = 16M
61.1Sitojun}
71.1SitojunSECTIONS
81.1Sitojun{
91.1Sitojun  .text :
101.1Sitojun  {
111.1Sitojun    *(.text)
121.1Sitojun    *(.strings)
131.1Sitojun     _etext = . ; 
141.1Sitojun  }  > ram
151.1Sitojun  .tors :
161.1Sitojun  {
171.1Sitojun    ___ctors = . ;
181.1Sitojun    *(.ctors)
191.1Sitojun    ___ctors_end = . ;
201.1Sitojun    ___dtors = . ;
211.1Sitojun    *(.dtors)
221.1Sitojun    ___dtors_end = . ;
231.1Sitojun  } > ram
241.1Sitojun  .data :
251.1Sitojun  {
261.1Sitojun    *(.data)
271.1Sitojun     _edata = . ; 
281.1Sitojun  }  > ram
291.1Sitojun  .bss :
301.1Sitojun  {
311.1Sitojun     _bss_start = . ; 
321.1Sitojun    *(.bss)
331.1Sitojun    *(COMMON)
341.1Sitojun     _end = . ;  
351.1Sitojun  }  > ram
361.1Sitojun  .stack   :
371.1Sitojun  {
381.1Sitojun     _stack = . ; 
391.1Sitojun    *(.stack)
401.1Sitojun  }  > ram
411.1Sitojun  .stab 0 (NOLOAD) :
421.1Sitojun  {
431.1Sitojun    *(.stab)
441.1Sitojun  }
451.1Sitojun  .stabstr 0 (NOLOAD) :
461.1Sitojun  {
471.1Sitojun    *(.stabstr)
481.1Sitojun  }
491.1Sitojun}
50