bond/build/link64.ld

19 lines
128 B
Plaintext

OUTPUT_FORMAT(binary)
SECTIONS
{
.text :
{
*(.text)
}
.data :
{
*(.data)
}
.bss :
{
*(.bss)
}
}