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 = 4M 6 1.1 itojun uram : o = 0x8c010000, l = 16M 7 1.1 itojun } 8 1.1 itojun SECTIONS 9 1.1 itojun { 10 1.1 itojun .text : 11 1.1 itojun { 12 1.1 itojun *(.text) 13 1.1 itojun *(.strings) 14 1.1 itojun _etext = . ; 15 1.1 itojun } > ram 16 1.1 itojun .tors : 17 1.1 itojun { 18 1.1 itojun ___ctors = . ; 19 1.1 itojun *(.ctors) 20 1.1 itojun ___ctors_end = . ; 21 1.1 itojun ___dtors = . ; 22 1.1 itojun *(.dtors) 23 1.1 itojun ___dtors_end = . ; 24 1.1 itojun } > ram 25 1.1 itojun .data : 26 1.1 itojun { 27 1.1 itojun *(.data) 28 1.1 itojun _edata = . ; 29 1.1 itojun } > ram 30 1.1 itojun .bss : 31 1.1 itojun { 32 1.1 itojun _bss_start = . ; 33 1.1 itojun *(.bss) 34 1.1 itojun *(COMMON) 35 1.1 itojun _end = . ; 36 1.1 itojun } > uram 37 1.1 itojun .stack : 38 1.1 itojun { 39 1.1 itojun _stack = . ; 40 1.1 itojun *(.stack) 41 1.1 itojun } > uram 42 1.1 itojun .stab 0 (NOLOAD) : 43 1.1 itojun { 44 1.1 itojun *(.stab) 45 1.1 itojun } 46 1.1 itojun .stabstr 0 (NOLOAD) : 47 1.1 itojun { 48 1.1 itojun *(.stabstr) 49 1.1 itojun } 50 1.1 itojun } 51