12af2926e5
Now making the Fuzev2 bootloader build should be pretty easy TODO: - write button driver (FlynDice found all buttons already) - find button light - decide if lcd-ssd1303.c must be modified for Clip+ using SSP or forked - check if backlight code works (I copied Clipv2 code) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24520 a1c6a512-1295-4272-9138-f99709370657
61 lines
871 B
Text
61 lines
871 B
Text
#include "config.h"
|
|
#include "cpu.h"
|
|
|
|
ENTRY(start)
|
|
OUTPUT_FORMAT(elf32-littlearm)
|
|
OUTPUT_ARCH(arm)
|
|
STARTUP(target/arm/crt0.o)
|
|
|
|
#if CONFIG_CPU == AS3525v2
|
|
#define RAMORIG 0x0 /* DRAM */
|
|
#define RAMSIZE (MEM*0x100000)
|
|
#else
|
|
#define RAMORIG 0x81000000 /* IRAM */
|
|
#define RAMSIZE 0x50000
|
|
#endif
|
|
|
|
MEMORY
|
|
{
|
|
RAM : ORIGIN = RAMORIG, LENGTH = RAMSIZE
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = RAMORIG;
|
|
|
|
.text : {
|
|
*(.init.text)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
*(.text*)
|
|
} > RAM
|
|
|
|
.data : {
|
|
*(.icode)
|
|
*(.irodata)
|
|
*(.idata)
|
|
*(.data*)
|
|
*(.ncdata*)
|
|
*(.rodata*)
|
|
_dataend = . ;
|
|
} > RAM
|
|
|
|
.stack :
|
|
{
|
|
*(.stack)
|
|
_stackbegin = .;
|
|
stackbegin = .;
|
|
. += 0x2000;
|
|
_stackend = .;
|
|
stackend = .;
|
|
} > RAM
|
|
|
|
.bss : {
|
|
_edata = .;
|
|
*(.bss*);
|
|
*(.ibss);
|
|
*(COMMON)
|
|
*(.ncbss*);
|
|
_end = .;
|
|
} > RAM
|
|
}
|