15 lines
129 B
Plaintext
15 lines
129 B
Plaintext
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS {
|
||
|
. = 1M;
|
||
|
|
||
|
.boot :
|
||
|
{
|
||
|
*(.mb2_header)
|
||
|
}
|
||
|
|
||
|
.text :
|
||
|
{
|
||
|
*(.text)
|
||
|
}
|
||
|
}
|