Files
oxidos/link-cfg/linker.ld
mtgmonkey 147702a8fa init
2025-07-29 09:46:44 -04:00

13 lines
116 B
Plaintext

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