old-MTGos/modules/x86/link.ld
2016-08-02 21:27:44 +02:00

23 lines
No EOL
600 B
Text

ENTRY(getTable)
SECTIONS
{
. = 0x106000;
module_start = .;
.text : {
*(.text)
*(.text.*)
start_ctors = .;
KEEP(*( .init_array ));
KEEP(*(SORT_BY_INIT_PRIORITY( .init_array.* )));
*(.ctors)
end_ctors = .;
start_dtors = .;
*(.dtors)
end_dtors = .;
*(.data)
*(.data.*)
*(.rodata)
*(.bss)
}
module_end = .;
}