kolibrios/programs/develop/libraries/gblib/example/kolibri.ld
Albom 2118401afb gblib src added
git-svn-id: svn://kolibrios.org@1879 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-02-18 17:46:37 +00:00

21 lines
214 B
Plaintext

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