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