summaryrefslogtreecommitdiff
path: root/contrib/binutils/ld/scripttempl/tic30coff.sc
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-04-18 02:42:13 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-04-18 02:42:13 +0000
commit250e7c04cd108375c2bc4e6657a3d660ecc4f10c (patch)
treeffc0692c3d95a48643d48abc64d13f425186d5c0 /contrib/binutils/ld/scripttempl/tic30coff.sc
parentbf5476a7568284207ef150fa66e60173e5fd7c2b (diff)
Notes
Diffstat (limited to 'contrib/binutils/ld/scripttempl/tic30coff.sc')
-rw-r--r--contrib/binutils/ld/scripttempl/tic30coff.sc58
1 files changed, 0 insertions, 58 deletions
diff --git a/contrib/binutils/ld/scripttempl/tic30coff.sc b/contrib/binutils/ld/scripttempl/tic30coff.sc
deleted file mode 100644
index df2d4f737cd3..000000000000
--- a/contrib/binutils/ld/scripttempl/tic30coff.sc
+++ /dev/null
@@ -1,58 +0,0 @@
-cat <<EOF
-OUTPUT_FORMAT("${OUTPUT_FORMAT}")
-OUTPUT_ARCH("${OUTPUT_ARCH}")
-
-MEMORY
-{
- rom : ORIGIN = 0x00000300, LENGTH = 16k
- ram : ORIGIN = 0x00000300 + 16k, LENGTH = 16k
- ramblk0 : ORIGIN = 0x02026000, LENGTH = 0x1000
- ramblk1 : ORIGIN = 0x02027000, LENGTH = 0x1000
-}
-
-SECTIONS
-{
-.vectors 0x00000000 :
-{
- *(vectors)
-}
-
-.text :
-{
- *(.text)
-} > rom
-
-.const :
-{
- *(.const)
- __etext = . ;
-} > rom
-
-.mdata : AT( ADDR(.const) + SIZEOF(.const) )
-{
- __data = . ;
- *(.data);
- __edata = . ;
-} > ram
-
-.bss :
-{
- __bss = . ;
- *(.bss);
- *(COMMON);
- __ebss = . ;
-} > ram
-
-.ram0 :
-{
- *(ram0)
-} > ramblk0
-
-.ram1 :
-{
- *(ram1)
-} > ramblk1
-
-}
-
-EOF