forked from Imagelibrary/binutils-gdb
Mon Feb 2 19:34:54 1998 Steve Haworth <steve@pm.cse.rmit.EDU.AU>
Add tms320c30 support: * configure.tgt (tic30-*-*aout*, tic30-*-*coff*): New targets. * emulparams/tic30aout.sh: New file. * emulparams/tic30coff.sh: New file. * scripttempl/tic30aout.sc: New file. * scripttempl/tic30coff.sc: New file. * Makefile.am (ALL_EMULATIONS): Add etic30aout.o and etic30coff.o. (etic30aout.c, etic30coff.c): New targets. * Makefile.in: Rebuild.
This commit is contained in:
58
ld/scripttempl/tic30coff.sc
Normal file
58
ld/scripttempl/tic30coff.sc
Normal file
@@ -0,0 +1,58 @@
|
||||
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
|
||||
Reference in New Issue
Block a user