kolibrios/programs/system/kobra/trunk/kolibri.ld
vkos 3612344bac Initial commit of Kobra, Kolibri Bus for Reaching Applications
git-svn-id: svn://kolibrios.org@1238 a494cfbc-eb01-0410-851d-a64ba20cac60
2009-10-26 17:03:29 +00:00

21 lines
214 B
Plaintext

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