This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/loader/linker.ld

13 lines
293 B
Plaintext
Raw Normal View History

2017-02-23 19:30:09 +01:00
OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
2016-10-12 02:28:08 +02:00
. = 0x24FFFE00;
2017-02-23 19:30:09 +01:00
.text : ALIGN(4) { *(.text.start) *(.text*)}
.rodata : ALIGN(4) { *(.rodata*) }
.data : ALIGN(4) { *(.data*) *(.bss* COMMON)}
. = ALIGN(4);
}