mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 03:52:59 +00:00
11 lines
182 B
Raku
11 lines
182 B
Raku
SECTIONS
|
|
{
|
|
. = -0x7ff00000;
|
|
.text : {*(.text .text.*)}
|
|
. = ALIGN(64);
|
|
.foo : { *(.foo) }
|
|
. = ALIGN(8192);
|
|
.data : AT (ADDR(.data)) { *(.data) }
|
|
/DISCARD/ : { *(.*) }
|
|
}
|