seraphim/com.ld

17 lines
164 B
Text
Raw Normal View History

2025-01-11 06:05:10 -05:00
OUTPUT_FORMAT(binary)
SECTIONS
{
. = 0x0100;
.text :
{
*(.text);
}
.data :
{
*(.data);
*(.bss);
*(.rodata);
}
_heap = ALIGN(4);
}