mirror of
https://github.com/safedv/RustiveDump
synced 2026-06-08 17:19:41 +00:00
26 lines
400 B
Plaintext
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)
|
|
}
|
|
}
|