mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 07:59:42 +00:00
37 lines
633 B
Plaintext
37 lines
633 B
Plaintext
/* Tell linker where our application entry is so the garbage collect can work correct */
|
|
ENTRY(__entry_menu);
|
|
|
|
SECTIONS {
|
|
. = 0x00802000;
|
|
.text : {
|
|
*(.text*);
|
|
}
|
|
.rodata : {
|
|
*(.rodata*);
|
|
}
|
|
. = 0x10000000;
|
|
.data : {
|
|
*(.data*);
|
|
|
|
__sdata_start = .;
|
|
*(.sdata*);
|
|
__sdata_end = .;
|
|
|
|
__sdata2_start = .;
|
|
*(.sdata2*);
|
|
__sdata2_end = .;
|
|
}
|
|
.bss : {
|
|
__bss_start = .;
|
|
*(.bss*);
|
|
*(.sbss*);
|
|
*(COMMON);
|
|
__bss_end = .;
|
|
}
|
|
__CODE_END = .;
|
|
|
|
}
|
|
|
|
/******************************************************** FS ********************************************************/
|
|
/* coreinit.rpl difference in addresses 0xFE3C00 */
|