forked from len0rd/rockbox
Ladies and Gentlemen we now have sound through the codecs on the M:Robe 500i (DM320)\!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20285 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3c7ada5941
commit
eddc4ee13b
1 changed files with 5 additions and 6 deletions
|
|
@ -84,9 +84,8 @@ OUTPUT_FORMAT(elf32-littlemips)
|
||||||
#define IRAMSIZE 0
|
#define IRAMSIZE 0
|
||||||
#elif CONFIG_CPU==DM320
|
#elif CONFIG_CPU==DM320
|
||||||
#define DRAMORIG 0x00900000 + STUBOFFSET
|
#define DRAMORIG 0x00900000 + STUBOFFSET
|
||||||
#define IRAMORIG DRAMORIG
|
|
||||||
#define IRAMSIZE 0x4000
|
|
||||||
#define IRAM DRAM
|
#define IRAM DRAM
|
||||||
|
#define IRAMSIZE 0
|
||||||
#elif defined(CPU_TCC780X) || defined(CPU_TCC77X)
|
#elif defined(CPU_TCC780X) || defined(CPU_TCC77X)
|
||||||
#define DRAMORIG 0x20000000
|
#define DRAMORIG 0x20000000
|
||||||
/*#define IRAMORIG 0x1000c000
|
/*#define IRAMORIG 0x1000c000
|
||||||
|
|
@ -153,7 +152,7 @@ SECTIONS
|
||||||
{
|
{
|
||||||
*(.text*)
|
*(.text*)
|
||||||
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
||||||
*(.icode)
|
*(.icode)
|
||||||
#endif
|
#endif
|
||||||
#ifdef CPU_ARM
|
#ifdef CPU_ARM
|
||||||
*(.glue_7)
|
*(.glue_7)
|
||||||
|
|
@ -165,7 +164,7 @@ SECTIONS
|
||||||
{
|
{
|
||||||
*(.rodata*)
|
*(.rodata*)
|
||||||
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
||||||
*(.irodata)
|
*(.irodata)
|
||||||
#endif
|
#endif
|
||||||
. = ALIGN(0x4);
|
. = ALIGN(0x4);
|
||||||
} > PLUGIN_RAM
|
} > PLUGIN_RAM
|
||||||
|
|
@ -174,7 +173,7 @@ SECTIONS
|
||||||
{
|
{
|
||||||
*(.data*)
|
*(.data*)
|
||||||
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
||||||
*(.idata)
|
*(.idata)
|
||||||
#endif
|
#endif
|
||||||
} > PLUGIN_RAM
|
} > PLUGIN_RAM
|
||||||
|
|
||||||
|
|
@ -224,7 +223,7 @@ SECTIONS
|
||||||
plugin_bss_start = .;
|
plugin_bss_start = .;
|
||||||
*(.bss*)
|
*(.bss*)
|
||||||
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
#if defined(IRAMSIZE) && IRAMSIZE == 0
|
||||||
*(.ibss)
|
*(.ibss)
|
||||||
#endif
|
#endif
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(0x4);
|
. = ALIGN(0x4);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue