mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
14 lines
164 B
Perl
14 lines
164 B
Perl
ENTRY(_entry)
|
|
PHDRS
|
|
{
|
|
data PT_LOAD;
|
|
}
|
|
SECTIONS
|
|
{
|
|
. = 0x1000000;
|
|
.foo : { *(.foo) } :data
|
|
. = 0x2000000;
|
|
.bar : { *(.bar) } :data
|
|
/DISCARD/ : { *(*) }
|
|
}
|