2021-11-29 13:59:34 +00:00
|
|
|
ENTRY(_start)
|
|
|
|
|
|
|
|
SECTIONS {
|
|
|
|
. = 1M;
|
|
|
|
|
|
|
|
.boot :
|
|
|
|
{
|
|
|
|
/* ensure that the multiboot header is at the beginning */
|
|
|
|
*(.multiboot_header)
|
|
|
|
}
|
|
|
|
|
2021-12-03 23:09:42 +00:00
|
|
|
.stack :
|
|
|
|
{
|
|
|
|
*(.stack)
|
|
|
|
}
|
|
|
|
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
*(.bss)
|
|
|
|
}
|
|
|
|
|
2021-11-29 13:59:34 +00:00
|
|
|
.text :
|
|
|
|
{
|
|
|
|
*(.text)
|
|
|
|
}
|
|
|
|
}
|