Retro68/binutils/ld/scripttempl/tic54xcoff.sc

66 lines
1.3 KiB
Python
Raw Normal View History

2015-08-28 15:32:19 +00:00
# Default linker script for c54x, TI COFF(1).
2012-03-26 19:18:29 +00:00
# patterned after description in TI Assembler Tools PDF, SPRU102C, 7-53
2015-08-28 15:32:19 +00:00
#
2018-12-28 15:25:28 +00:00
# Copyright (C) 2014-2018 Free Software Foundation, Inc.
#
2015-08-28 15:32:19 +00:00
# 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.
2012-03-26 19:18:29 +00:00
test -z "$ENTRY" && ENTRY=_c_int00
cat <<EOF
2018-12-28 15:25:28 +00:00
/* Copyright (C) 2014-2018 Free Software Foundation, Inc.
2015-08-28 15:32:19 +00:00
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. */
2012-03-26 19:18:29 +00:00
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
OUTPUT_ARCH("${OUTPUT_ARCH}")
MEMORY
{
/*PAGE 0 : */ prog (RXI) : ORIGIN = 0x00000080, LENGTH = 0xFF00
/*PAGE 1 : */ data (W) : ORIGIN = 0x01000080, LENGTH = 0xFF80
}
${RELOCATING+ENTRY (${ENTRY})}
2018-12-28 15:25:28 +00:00
SECTIONS
{
.text :
2012-03-26 19:18:29 +00:00
{
___text__ = .;
*(.text)
etext = .;
___etext__ = .;
} > prog
2018-12-28 15:25:28 +00:00
.data :
2012-03-26 19:18:29 +00:00
{
___data__ = .;
__data = .;
*(.data)
__edata = .;
edata = .;
___edata__ = .;
} > prog
/* all other initialized sections should be allocated here */
2018-12-28 15:25:28 +00:00
.cinit :
2012-03-26 19:18:29 +00:00
{
*(.cinit)
} > prog
2018-12-28 15:25:28 +00:00
.bss :
2012-03-26 19:18:29 +00:00
{
___bss__ = .;
__bss = .;
*(.bss)
*(COMMON)
__ebss = .;
end = .;
___end__ = .;
} > data
/* all other uninitialized sections should be allocated here */
}
EOF