Files
2015-10-26 03:04:21 -07:00

17 lines
233 B
Plaintext

ENTRY(start)
SECTIONS {
. = 10K; /* load into memory at 1M */
.boot :
{
/* ensure that the multiboot header is at the beginning */
*(.multiboot2_header)
}
.text :
{
*(.text)
}
}