7f75f5eb1e
*Due space limitations only the debug version of kenobigc is supported, this means there is a bit less space for cheats. git-svn-id: svn://localhost/Users/andi/Downloads/code/trunk@2 be6c1b03-d731-4111-a574-e37d80d43941
82 lines
1.1 KiB
Plaintext
82 lines
1.1 KiB
Plaintext
OUTPUT_FORMAT("elf32-bigarm")
|
|
OUTPUT_ARCH(arm)
|
|
ENTRY(_start)
|
|
|
|
__stack_size = 0x4000;
|
|
|
|
MEMORY
|
|
{
|
|
sram : ORIGIN = 0xFFFF0000, LENGTH = 0x10000
|
|
stack : ORIGIN = 0xFFFE0000, LENGTH = 0x4000
|
|
}
|
|
|
|
PHDRS
|
|
{
|
|
sram PT_LOAD AT ( 0xFFFF0000 ) ;
|
|
stack PT_LOAD AT ( 0xFFFE0000 ) ;
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.init :
|
|
{
|
|
*(.init)
|
|
. = ALIGN(4);
|
|
} >sram :sram
|
|
|
|
.text :
|
|
{
|
|
*(.text*)
|
|
*(.text.*)
|
|
*(.gnu.warning)
|
|
*(.gnu.linkonce.t*)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
. = ALIGN(4);
|
|
} >sram :sram
|
|
|
|
.rodata :
|
|
{
|
|
*(.rodata)
|
|
*all.rodata*(*)
|
|
*(.roda)
|
|
*(.rodata.*)
|
|
*(.gnu.linkonce.r*)
|
|
. = ALIGN(4);
|
|
} >sram :sram
|
|
|
|
.data :
|
|
{
|
|
*(.data)
|
|
*(.data.*)
|
|
*(.gnu.linkonce.d*)
|
|
. = ALIGN(4);
|
|
} >sram :sram
|
|
|
|
.bss :
|
|
{
|
|
__bss_start = . ;
|
|
*(.dynbss)
|
|
*(.gnu.linkonce.b*)
|
|
*(.bss*)
|
|
*(COMMON)
|
|
. = ALIGN(4);
|
|
__bss_end = . ;
|
|
} >sram :sram
|
|
|
|
|
|
.stack :
|
|
{
|
|
__stack_end = .;
|
|
. = . +__stack_size;
|
|
. = ALIGN(4);
|
|
__stack_addr = .;
|
|
} >stack :stack
|
|
|
|
/DISCARD/ :
|
|
{
|
|
*(.ARM.exidx*)
|
|
*(.ARM.extab*)
|
|
}
|
|
}
|