d6ed722e1a
FossilOrigin-Name: 6bde19a1eda8b7dd3911fe5e1ec15a89654ed0c1761fea2ba6004cdfe26a9961
21 lines
243 B
Text
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)
|
|
}
|
|
}
|