mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
19 lines
277 B
Plaintext
19 lines
277 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0;
|
|
.hash : { *(.hash) }
|
|
.dynsym : { *(.dynsym) }
|
|
.dynstr : { *(.dynstr) }
|
|
.rela.plt : { *(.rela.plt) }
|
|
|
|
. = 0x1000;
|
|
.plt : { *(.plt) }
|
|
|
|
. = 0x2000;
|
|
.text : { *(.text) }
|
|
|
|
. = 0x3000;
|
|
.dynamic : { *(.dynamic) }
|
|
.got : { *(.got.plt) }
|
|
}
|