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/linker.ld

16 lines
372 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)
2015-08-05 03:57:37 +02:00
ENTRY(_start)
SECTIONS
{
. = 0x23F00000;
2017-02-23 19:30:09 +01:00
.text : ALIGN(4) { *(.text.start) *(.text*) }
.rodata : ALIGN(4) { *(.rodata*) }
.data : ALIGN(4) { *(.data*) }
.bss : ALIGN(4) { __bss_start = .; *(.bss* COMMON); __bss_end = .;}
2015-08-05 03:57:37 +02:00
. = ALIGN(4);
}