seraphim/com.ld
2025-01-11 06:05:10 -05:00

16 lines
164 B
Text

OUTPUT_FORMAT(binary)
SECTIONS
{
. = 0x0100;
.text :
{
*(.text);
}
.data :
{
*(.data);
*(.bss);
*(.rodata);
}
_heap = ALIGN(4);
}