rustboot/linker.ld
mtgmonkey 2190a5c04d init
2025-05-12 23:05:08 -04:00

12 lines
116 B
Text

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