mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
11 lines
137 B
Raku
11 lines
137 B
Raku
PHDRS {
|
|
text PT_LOAD;
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
. = (0x8000000f + ALIGN(0x1000000, 0x1000000));
|
|
.text : AT(ADDR(.text) - 0x8000000f) {
|
|
} :text
|
|
}
|