4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-21 00:07:36 +08:00

* mt/ms2.ld (.sram): Correct typo in section names.

This commit is contained in:
Nathan Sidwell 2006-01-18 10:57:19 +00:00
parent 7c9feabf98
commit b985a434a0
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-01-18 Nathan Sidwell <nathan@codesourcery.com>
* mt/ms2.ld (.sram): Correct typo in section names.
2006-01-16 Nathan Sidwell <nathan@codesourcery.com> 2006-01-16 Nathan Sidwell <nathan@codesourcery.com>
* mt/Makefile.in (SCRIPTS, CRT0): Add ms2 files. * mt/Makefile.in (SCRIPTS, CRT0): Add ms2 files.

View File

@ -210,9 +210,9 @@ SECTIONS
/* For now, locate data ahead of code in onchip sram/memory. */ /* For now, locate data ahead of code in onchip sram/memory. */
.sram : AT (LOADADDR(.auxdata) + SIZEOF(.auxdata)) .sram : AT (LOADADDR(.auxdata) + SIZEOF(.auxdata))
{ {
*(.data.sram) *(.sram.data)
. = ALIGN(4) ; /* Make sure that instructions are aligned... */ . = ALIGN(4) ; /* Make sure that instructions are aligned... */
*(.text.sram) *(.sram.text)
} >sram } >sram
_sram_data_start = LOADADDR ( .sram ); _sram_data_start = LOADADDR ( .sram );