f0625a5a06
FossilOrigin-Name: 32ca966f579f451d4bd75dc48cfc78bc130add8ff50ba1d54720a9760d1cd968
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)
|
|
}
|
|
}
|