Remove unimplemented "PAGE N:" flag from default linker script.

This commit is contained in:
Timothy Wall 2000-06-30 12:36:38 +00:00
parent c99004323d
commit c9e769c2b1
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-06-30 Timothy Wall <twall@ppc>
* scripttempl/tic54xcoff.sc: PAGE N is not implemented, so encode
the page in the upper octet of the address.
2000-06-26 Marek Michalkiewicz <marekm@linux.org.pl>
* emulparams/avrmega161.sh (ARCH): Change to avr:5.

View File

@ -1,5 +1,5 @@
# default linker script for c54x, TI COFF(1).
# patterned after description in TI Aseembler Tools PDF, SPRU102C, 7-53
# patterned after description in TI Assembler Tools PDF, SPRU102C, 7-53
test -z "$ENTRY" && ENTRY=_c_int00
cat <<EOF
@ -8,8 +8,8 @@ OUTPUT_ARCH("${OUTPUT_ARCH}")
MEMORY
{
PAGE 0 : prog (RXI) : ORIGIN = 0x000080, LENGTH = 0xFF00
PAGE 1 : data (W) : ORIGIN = 0x000080, LENGTH = 0xFF80
/*PAGE 0 : */ prog (RXI) : ORIGIN = 0x00000080, LENGTH = 0xFF00
/*PAGE 1 : */ data (W) : ORIGIN = 0x01000080, LENGTH = 0xFF80
}
ENTRY(${ENTRY})