mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
11 lines
131 B
Plaintext
11 lines
131 B
Plaintext
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
/* Sections to be discarded */
|
|
/DISCARD/ : {
|
|
*(.data.exit)
|
|
*(.text.exit)
|
|
}
|
|
}
|