Files
empty/kernel.lds
2025-10-26 15:21:48 +01:00

12 lines
177 B
Plaintext

ENTRY(_start)
SECTIONS
{
. = 0x00008000;
.init : { *(.init) }
.text : { *(.text) }
.rodata : { *(.rodata) }
. = ALIGN(1<<20);
.data : { *(.data) }
.bss : { *(.bss) }
}