64os/targets/x86_64/linker.ld
2024-04-07 23:08:07 -07:00

16 lines
127 B
Plaintext

ENTRY(start)
SECTIONS
{
. = 1M;
.boot :
{
KEEP(*(.multiboot_header))
}
.text :
{
*(.text)
}
}