1
0
Fork 0
forked from len0rd/rockbox

Both iriver boot loaders have to use DRAM now, since the unicode codepage table doesn't fit in IRAM

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8171 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-12-06 14:29:26 +00:00
parent 637ab47de6
commit e8224def39

View file

@ -139,7 +139,7 @@ SECTIONS
stackend = .; stackend = .;
} > IRAM } > IRAM
#ifdef IRIVER_H300_SERIES #if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
.bss DRAMORIG+0x1000000: .bss DRAMORIG+0x1000000:
#else #else
.bss : .bss :
@ -150,7 +150,7 @@ SECTIONS
*(.bss) *(.bss)
*(COMMON) *(COMMON)
_end = .; _end = .;
#ifdef IRIVER_H300_SERIES #if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
} > DRAM } > DRAM
#else #else
} > IRAM } > IRAM