forked from len0rd/rockbox
do PP5024 like PP5020 until we found out more
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10398 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
95ea758686
commit
97cf946e4d
1 changed files with 8 additions and 2 deletions
|
@ -38,6 +38,12 @@ INPUT(crt0.o)
|
|||
#define IRAMSIZE 0x18000
|
||||
#define FLASHORIG 0x001f0000
|
||||
#define FLASHSIZE 2M
|
||||
#elif CONFIG_CPU == PP5024
|
||||
#define DRAMORIG 0x10000000
|
||||
#define IRAMORIG 0x40000000
|
||||
#define IRAMSIZE 0x18000
|
||||
#define FLASHORIG 0x001f0000
|
||||
#define FLASHSIZE 2M
|
||||
#elif CONFIG_CPU == S3C2440
|
||||
#define DRAMORIG 0x30000000
|
||||
#define IRAMORIG 0x40000000
|
||||
|
@ -58,7 +64,7 @@ INPUT(crt0.o)
|
|||
#define FLASHSIZE 256K - ROM_START
|
||||
#endif
|
||||
|
||||
#if (CONFIG_CPU!=PP5002) && (CONFIG_CPU!=PP5020)
|
||||
#if (CONFIG_CPU!=PP5002) && (CONFIG_CPU!=PP5020) && (CONFIG_CPU!=PP5024)
|
||||
MEMORY
|
||||
{
|
||||
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
||||
|
@ -68,7 +74,7 @@ MEMORY
|
|||
#endif
|
||||
|
||||
SECTIONS
|
||||
#if (CONFIG_CPU==PP5002) || (CONFIG_CPU==PP5020)
|
||||
#if (CONFIG_CPU==PP5002) || (CONFIG_CPU==PP5020) || (CONFIG_CPU==PP5024)
|
||||
{
|
||||
. = IRAMORIG;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue