mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
12 lines
184 B
Plaintext
12 lines
184 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0x50000;
|
|
.text : { *(.text) }
|
|
.MIPS.stubs : { *(.MIPS.stubs) }
|
|
|
|
. = 0x60000;
|
|
.data : { *(.data) }
|
|
HIDDEN (_gp = ALIGN (16) + 0x7ff0);
|
|
.got : { *(.got) }
|
|
}
|