Files
scarab-os/boot/linker.ld
2025-12-30 18:49:57 +00:00

17 lines
208 B
Plaintext

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