retroforth/experimental/386.ld
2018-01-30 17:25:44 +00:00

21 lines
243 B
Text

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