16 lines
164 B
Text
16 lines
164 B
Text
OUTPUT_FORMAT(binary)
|
|
SECTIONS
|
|
{
|
|
. = 0x0100;
|
|
.text :
|
|
{
|
|
*(.text);
|
|
}
|
|
.data :
|
|
{
|
|
*(.data);
|
|
*(.bss);
|
|
*(.rodata);
|
|
}
|
|
_heap = ALIGN(4);
|
|
}
|