17 lines
233 B
Plaintext
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)
|
|
}
|
|
}
|