No empty .Rs/.Re
[netbsd-mini2440.git] / sys / arch / evbsh3 / conf / sh.x.ICE
blobe702469808ee274224f17ed992660bef74d709cf
1 OUTPUT_FORMAT("coff-sh")
2 OUTPUT_ARCH(sh)
3 MEMORY
5   ram : o = 0x0c010000, l = 16M
7 SECTIONS
9   .text :
10   {
11     *(.text)
12     *(.strings)
13      _etext = . ;
14   }  > ram
15   .tors :
16   {
17     ___ctors = . ;
18     *(.ctors)
19     ___ctors_end = . ;
20     ___dtors = . ;
21     *(.dtors)
22     ___dtors_end = . ;
23   } > ram
24   .data :
25   {
26     *(.data)
27      _edata = . ;
28   }  > ram
29   .bss :
30   {
31      _bss_start = . ;
32     *(.bss)
33     *(COMMON)
34      _end = . ;
35   }  > ram
36   .stack   :
37   {
38      _stack = . ;
39     *(.stack)
40   }  > ram
41   .stab 0 (NOLOAD) :
42   {
43     *(.stab)
44   }
45   .stabstr 0 (NOLOAD) :
46   {
47     *(.stabstr)
48   }