JuliOS/src/linker.ld
Julien CLEMENT 30c103a6b3 feat(grub): add multi-boot support and long mode swap
Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
2021-11-29 14:59:34 +01:00

17 lines
203 B
Plaintext

ENTRY(_start)
SECTIONS {
. = 1M;
.boot :
{
/* ensure that the multiboot header is at the beginning */
*(.multiboot_header)
}
.text :
{
*(.text)
}
}