mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
18 lines
315 B
Plaintext
18 lines
315 B
Plaintext
|
SECTIONS
|
||
|
{
|
||
|
. = 0x80000;
|
||
|
.interp : { *(.interp) }
|
||
|
.hash : { *(.hash) }
|
||
|
.dynsym : { *(.dynsym) }
|
||
|
.dynstr : { *(.dynstr) }
|
||
|
.rel.dyn : { *(.rel.dyn) }
|
||
|
.MIPS.stubs : { *(.MIPS.stubs) }
|
||
|
.text : { *(.text) }
|
||
|
|
||
|
. = ALIGN (0x10000);
|
||
|
_gp = . + 0x7ff0;
|
||
|
.got : { *(.got) }
|
||
|
|
||
|
/DISCARD/ : { *(.reginfo) }
|
||
|
}
|