Files
2024-10-13 15:21:11 +02:00

26 lines
400 B
Plaintext

ENTRY(_start);
SECTIONS
{
. = 0x0000;
.text ALIGN(16) :
{
*(.text.prologue)
*(.text*)
*(.rodata*)
*(.rdata*)
*(.global*)
}
/DISCARD/ :
{
*(.interp)
*(.comment)
*(.debug_frame)
*(.bss)
*(.pdata)
*(.xdata)
}
}