mirror of
https://github.com/realmicrosoft/windows.git
synced 2024-08-14 22:46:44 +00:00
16 lines
207 B
Text
16 lines
207 B
Text
|
ENTRY(start)
|
||
|
|
||
|
SECTIONS {
|
||
|
. = 1M;
|
||
|
|
||
|
.boot :
|
||
|
{
|
||
|
/* ensure that the multiboot header is at the beginning */
|
||
|
KEEP(*(.multiboot_header))
|
||
|
}
|
||
|
|
||
|
.text :
|
||
|
{
|
||
|
*(.text)
|
||
|
}
|
||
|
}
|