kolibrios/programs/system/shell/kolibri.ld

21 lines
214 B
Plaintext
Raw Normal View History

/*OUTPUT_FORMAT("binary")*/
ENTRY(Start)
SECTIONS
{
.text 0x000000:
{
*(.text)
}
.data : {
*(.data)
hEnd = . ;
}
.bss :
{
*(.bss)
}
Memory = . ;
}