mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
13 lines
200 B
Plaintext
13 lines
200 B
Plaintext
PHDRS
|
|
{
|
|
header PT_PHDR PHDRS ;
|
|
image PT_LOAD PHDRS;
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x1000;
|
|
.text : { *(.text) *(.rodata.brlt) } :image :header
|
|
/DISCARD/ : { *(.dropme) *(.reginfo) *(.MIPS.abiflags) }
|
|
}
|