2014-06-12 12:43:21 +02:00
|
|
|
/*OUTPUT_FORMAT("binary")*/
|
|
|
|
ENTRY("start")
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text 0x000000 :
|
|
|
|
{
|
|
|
|
code = . ; _code = . ;
|
2014-09-12 17:15:23 +02:00
|
|
|
*(.A)
|
2014-06-12 12:43:21 +02:00
|
|
|
*(.text)
|
|
|
|
*(.fixup)
|
|
|
|
*(.gnu.warning)
|
|
|
|
*(.gnu.linkonce.t*)
|
|
|
|
*(.const)
|
|
|
|
*(.ro*)
|
|
|
|
*(.gnu.linkonce.r*)
|
|
|
|
ecode = . ; _ecode = . ;
|
|
|
|
}
|
|
|
|
.rdata :
|
|
|
|
{
|
|
|
|
}
|
|
|
|
.data :
|
|
|
|
{
|
|
|
|
djgpp_first_ctor = . ;
|
|
|
|
*(.ctor)
|
|
|
|
*(.ctors)
|
|
|
|
djgpp_last_ctor = . ;
|
|
|
|
djgpp_first_dtor = . ;
|
|
|
|
*(.dtor)
|
|
|
|
*(.dtors)
|
|
|
|
djgpp_last_dtor = . ;
|
|
|
|
*(.gcc_exc*)
|
|
|
|
__EH_FRAME_BEGIN__ = . ;
|
|
|
|
*(.eh_fram*)
|
|
|
|
__EH_FRAME_END__ = . ;
|
|
|
|
LONG(0);
|
|
|
|
*(.gnu.linkonce.d*)
|
|
|
|
*(.rodata)
|
|
|
|
*(.rodata.*)
|
|
|
|
*(.data)
|
|
|
|
edata = . ; _edata = . ;
|
|
|
|
bss = . ;
|
|
|
|
}
|
|
|
|
.bss :
|
|
|
|
{
|
|
|
|
*(.bss)
|
|
|
|
}
|
2014-09-12 17:15:23 +02:00
|
|
|
end = . ; _end = . ; ___memsize = . ;
|
|
|
|
/DISCARD/ :
|
|
|
|
{
|
|
|
|
*(.debug$S)
|
|
|
|
*(.debug$T)
|
|
|
|
*(.debug$F)
|
|
|
|
*(.drectve)
|
|
|
|
*(.note.GNU-stack)
|
|
|
|
*(.eh_frame)
|
|
|
|
*(.comment)
|
|
|
|
*(.debug_abbrev)
|
|
|
|
*(.debug_info)
|
|
|
|
*(.debug_line)
|
|
|
|
*(.debug_frame)
|
|
|
|
*(.debug_loc)
|
|
|
|
*(.debug_pubnames)
|
|
|
|
*(.debug_aranges)
|
|
|
|
*(.debug_ranges)
|
|
|
|
}
|
2014-06-12 12:43:21 +02:00
|
|
|
}
|
|
|
|
|