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/exceptions/arm11/linker.ld
2017-02-23 19:30:09 +01:00

13 lines
284 B
Plaintext

OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
SECTIONS
{
. = 0;
.text : ALIGN(4) { *(.text.start) *(.text*)}
.rodata : ALIGN(4) { *(.rodata*) }
.data : ALIGN(4) { *(.data*) *(.bss* COMMON)}
. = ALIGN(4);
}