mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-07 22:22:01 +03:00
19 lines
184 B
Plaintext
19 lines
184 B
Plaintext
|
/*OUTPUT_FORMAT("binary")*/
|
||
|
ENTRY("start_")
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text 0x000000:
|
||
|
{
|
||
|
*(.text)
|
||
|
}
|
||
|
|
||
|
.data : {
|
||
|
*(.data)
|
||
|
}
|
||
|
|
||
|
.bss :
|
||
|
{
|
||
|
*(.bss)
|
||
|
}
|
||
|
}
|