1
0
Fork 0
forked from AbleOS/ableos
ableos-idl/kernel/lds/aarch64-qemu.ld

14 lines
244 B
Plaintext
Raw Normal View History

ENTRY(_start)
SECTIONS
{
. = 0x40080000;
.text.boot : { *(.text.boot) }
.text : { *(.text) }
.data : { *(.data) }
.rodata : { *(.rodata) }
.bss : { *(.bss) }
. = ALIGN(8);
. = . + 0x4000;
LD_STACK_PTR = .;
}