retroforth/interfaces/native/386.ld
crc f0625a5a06 move experimental/ to interface/native
FossilOrigin-Name: 32ca966f579f451d4bd75dc48cfc78bc130add8ff50ba1d54720a9760d1cd968
2018-01-31 18:26:06 +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)
}
}