Changed start address. Fixed the memory map

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@205 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-04-23 22:11:50 +00:00
parent 8ee52130f0
commit 9dc1faf55a
1 changed files with 10 additions and 3 deletions

View File

@ -2,9 +2,16 @@ ENTRY(start)
OUTPUT_FORMAT(elf32-sh)
SECTIONS
{
.text 0x09018000 :
.text 0x09010000 :
{
*(.vectors)
. = ALIGN(0x200);
crt0.o(.text)
*(.rodata)
}
.text :
{
*(.text)
}
@ -16,8 +23,8 @@ SECTIONS
.bss :
{
*(.bss)
_end = . + 0x8000;
_stack = . + 0x9000;
_end = .;
_stack = . + 0x1000;
_edata = .;
}
}