diff options
author | Timothy Wall <twall@alum.mit.edu> | 2000-06-30 12:36:38 +0000 |
---|---|---|
committer | Timothy Wall <twall@alum.mit.edu> | 2000-06-30 12:36:38 +0000 |
commit | c9e769c2b1db09afda65b8a6c4b5a869209e1a87 (patch) | |
tree | 628186d06093f156d90e2e8b4f4ebaac3d6d302a /ld/scripttempl/tic54xcoff.sc | |
parent | c99004323dc703af7de076ed14936983a5651520 (diff) | |
download | gdb-c9e769c2b1db09afda65b8a6c4b5a869209e1a87.zip gdb-c9e769c2b1db09afda65b8a6c4b5a869209e1a87.tar.gz gdb-c9e769c2b1db09afda65b8a6c4b5a869209e1a87.tar.bz2 |
Remove unimplemented "PAGE N:" flag from default linker script.
Diffstat (limited to 'ld/scripttempl/tic54xcoff.sc')
-rw-r--r-- | ld/scripttempl/tic54xcoff.sc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/scripttempl/tic54xcoff.sc b/ld/scripttempl/tic54xcoff.sc index d84f928..8d8a811 100644 --- a/ld/scripttempl/tic54xcoff.sc +++ b/ld/scripttempl/tic54xcoff.sc @@ -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}) |