JuliOS/src/linker.ld

17 lines
203 B
Plaintext
Raw Normal View History

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