64os/targets/x86_64/linker.ld

16 lines
127 B
Plaintext
Raw Normal View History

2024-04-07 23:08:07 -07:00
ENTRY(start)
SECTIONS
{
. = 1M;
.boot :
{
KEEP(*(.multiboot_header))
}
.text :
{
*(.text)
}
}