diff options
Diffstat (limited to 'ld/scripttempl/tic30coff.sc')
-rw-r--r-- | ld/scripttempl/tic30coff.sc | 81 |
1 files changed, 46 insertions, 35 deletions
diff --git a/ld/scripttempl/tic30coff.sc b/ld/scripttempl/tic30coff.sc index df2d4f7..a0756c7 100644 --- a/ld/scripttempl/tic30coff.sc +++ b/ld/scripttempl/tic30coff.sc @@ -1,4 +1,16 @@ +# Copyright (C) 2014 Free Software Foundation, Inc. +# +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. + cat <<EOF +/* Copyright (C) 2014 Free Software Foundation, Inc. + + Copying and distribution of this script, with or without modification, + are permitted in any medium without royalty provided the copyright + notice and this notice are preserved. */ + OUTPUT_FORMAT("${OUTPUT_FORMAT}") OUTPUT_ARCH("${OUTPUT_ARCH}") @@ -12,47 +24,46 @@ MEMORY SECTIONS { -.vectors 0x00000000 : -{ - *(vectors) -} - -.text : -{ - *(.text) -} > rom + .vectors 0x00000000 : + { + *(vectors) + } -.const : -{ - *(.const) - __etext = . ; -} > rom + .text : + { + *(.text) + } > rom -.mdata : AT( ADDR(.const) + SIZEOF(.const) ) -{ - __data = . ; - *(.data); - __edata = . ; -} > ram + .const : + { + *(.const) + __etext = . ; + } > rom -.bss : -{ - __bss = . ; - *(.bss); - *(COMMON); - __ebss = . ; -} > ram + .mdata : AT( ADDR(.const) + SIZEOF(.const) ) + { + __data = . ; + *(.data); + __edata = . ; + } > ram -.ram0 : -{ - *(ram0) -} > ramblk0 + .bss : + { + __bss = . ; + *(.bss); + *(COMMON); + __ebss = . ; + } > ram -.ram1 : -{ - *(ram1) -} > ramblk1 + .ram0 : + { + *(ram0) + } > ramblk0 + .ram1 : + { + *(ram1) + } > ramblk1 } EOF |