mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-12 03:05:37 +00:00
19 lines
217 B
Plaintext
19 lines
217 B
Plaintext
|
ENTRY(_entry)
|
||
|
PHDRS
|
||
|
{
|
||
|
data PT_LOAD AT (0);
|
||
|
}
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x10000;
|
||
|
.foo : { *(.foo) } :data
|
||
|
|
||
|
. = 0x20000;
|
||
|
.bar : { *(.bar) } :data
|
||
|
|
||
|
/DISCARD/ : { *(*) }
|
||
|
|
||
|
_entry = 0x30000;
|
||
|
linker_symbol = 0x40000;
|
||
|
}
|