mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 12:11:43 +00:00
17 lines
361 B
Text
17 lines
361 B
Text
|
OUTPUT_ARCH(aarch64)
|
||
|
|
||
|
ENTRY(_start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x4003D000;
|
||
|
|
||
|
__start__ = ABSOLUTE(.);
|
||
|
|
||
|
.text : ALIGN(4) { *(.text.start) *(.text*); . = ALIGN(4); }
|
||
|
.rodata : ALIGN(4) { *(.rodata*); . = ALIGN(4); }
|
||
|
.bss : ALIGN(8) { __bss_start__ = .; *(.bss* COMMON); . = ALIGN(8); __bss_end__ = .; }
|
||
|
|
||
|
. = ALIGN(4);
|
||
|
|
||
|
__end__ = ABSOLUTE(.);
|
||
|
}
|