f504153857
- cache IRAM and DRAM - map IRAM just next to DRAM to remove the need for -mlong-calls and reduce binsize - tweak delays in Fuze button code - tweak delays in Clip button code (down button sometimes doesn't respond anyway : an alternate driver is being worked on) Before reporting any problem, please check your filesystem or format your player from the OF git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21228 a1c6a512-1295-4272-9138-f99709370657
56 lines
751 B
Text
56 lines
751 B
Text
#include "config.h"
|
|
#include "cpu.h"
|
|
|
|
ENTRY(start)
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
OUTPUT_ARCH(arm)
|
|
STARTUP(target/arm/crt0.o)
|
|
|
|
#define IRAMORIG 0x81000000
|
|
#define IRAMSIZE 0x50000
|
|
|
|
MEMORY
|
|
{
|
|
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = IRAMORIG;
|
|
|
|
.text : {
|
|
*(.init.text)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
*(.text*)
|
|
} > IRAM
|
|
|
|
.data : {
|
|
*(.icode)
|
|
*(.irodata)
|
|
*(.idata)
|
|
*(.data*)
|
|
*(.ncdata*)
|
|
*(.rodata*)
|
|
_dataend = . ;
|
|
} > IRAM
|
|
|
|
.stack :
|
|
{
|
|
*(.stack)
|
|
_stackbegin = .;
|
|
stackbegin = .;
|
|
. += 0x2000;
|
|
_stackend = .;
|
|
stackend = .;
|
|
} > IRAM
|
|
|
|
.bss : {
|
|
_edata = .;
|
|
*(.bss*);
|
|
*(.ibss);
|
|
*(COMMON)
|
|
*(.ncbss*);
|
|
_end = .;
|
|
} > IRAM
|
|
}
|