mirror of
https://github.com/realmicrosoft/windows.git
synced 2024-08-14 22:46:44 +00:00
30 lines
331 B
Text
30 lines
331 B
Text
|
ENTRY(_start)
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 1M;
|
||
|
|
||
|
.text BLOCK(4K) : ALIGN(4K)
|
||
|
{
|
||
|
*(.multiboot)
|
||
|
*(.text)
|
||
|
}
|
||
|
|
||
|
.rodata BLOCK(4K) : ALIGN(4K)
|
||
|
{
|
||
|
*(.rodata)
|
||
|
}
|
||
|
|
||
|
.data BLOCK(4K) : ALIGN(4K)
|
||
|
{
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
.bss BLOCK(4K) : ALIGN(4K)
|
||
|
{
|
||
|
*(COMMON)
|
||
|
*(.bss)
|
||
|
}
|
||
|
|
||
|
}
|