banan-os/bootloader/arch/x86_64/linker.ld

11 lines
138 B
Plaintext

SECTIONS
{
. = 0x7C00;
.stage1 : { *(.stage1*) }
. = ALIGN(512);
.stage2 : { *(.stage2) }
. = ALIGN(512);
free_memory_start = .;
}