Fix tabs galore.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19034 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4944a1c1e1
commit
97aef4ce11
1 changed files with 42 additions and 42 deletions
|
@ -7,26 +7,26 @@ OUTPUT_FORMAT(elf32-sh)
|
|||
|
||||
MEMORY
|
||||
{
|
||||
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
||||
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
||||
IRAM : ORIGIN = IRAMORIG, LENGTH = IRAMSIZE
|
||||
DRAM : ORIGIN = DRAMORIG, LENGTH = DRAMSIZE
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
.vectors :
|
||||
{
|
||||
_loadaddress = .;
|
||||
_dramend = . + DRAMSIZE;
|
||||
*(.vectors)
|
||||
. = ALIGN(0x200);
|
||||
} > DRAM
|
||||
.vectors :
|
||||
{
|
||||
_loadaddress = .;
|
||||
_dramend = . + DRAMSIZE;
|
||||
*(.vectors)
|
||||
. = ALIGN(0x200);
|
||||
} > DRAM
|
||||
|
||||
.text :
|
||||
{
|
||||
*(.start)
|
||||
*(.text)
|
||||
. = ALIGN(0x4);
|
||||
} > DRAM
|
||||
.text :
|
||||
{
|
||||
*(.start)
|
||||
*(.text)
|
||||
. = ALIGN(0x4);
|
||||
} > DRAM
|
||||
|
||||
.rodata :
|
||||
{
|
||||
|
@ -36,36 +36,36 @@ SECTIONS
|
|||
. = ALIGN(0x4);
|
||||
} > DRAM
|
||||
|
||||
.data :
|
||||
{
|
||||
*(.data)
|
||||
. = ALIGN(0x4);
|
||||
_iramcopy = .;
|
||||
} > DRAM
|
||||
.data :
|
||||
{
|
||||
*(.data)
|
||||
. = ALIGN(0x4);
|
||||
_iramcopy = .;
|
||||
} > DRAM
|
||||
|
||||
.iram IRAMORIG : AT ( _iramcopy )
|
||||
{
|
||||
_iramstart = .;
|
||||
*(.icode)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM
|
||||
.iram IRAMORIG : AT ( _iramcopy )
|
||||
{
|
||||
_iramstart = .;
|
||||
*(.icode)
|
||||
*(.idata)
|
||||
. = ALIGN(0x4);
|
||||
_iramend = .;
|
||||
} > IRAM
|
||||
|
||||
.stack :
|
||||
{
|
||||
_stackbegin = .;
|
||||
*(.stack)
|
||||
.stack :
|
||||
{
|
||||
_stackbegin = .;
|
||||
*(.stack)
|
||||
. += 0x0800;
|
||||
_stackend = .;
|
||||
} > IRAM
|
||||
_stackend = .;
|
||||
} > IRAM
|
||||
|
||||
.bss :
|
||||
{
|
||||
_edata = .;
|
||||
*(.bss)
|
||||
.bss :
|
||||
{
|
||||
_edata = .;
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
. = ALIGN(0x4);
|
||||
_end = .;
|
||||
} > DRAM
|
||||
. = ALIGN(0x4);
|
||||
_end = .;
|
||||
} > DRAM
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue