mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
16 lines
285 B
Raku
16 lines
285 B
Raku
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
. = ALIGN(__section_alignment__);
|
|
.text __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
|
|
{
|
|
*(.text)
|
|
}
|
|
. = . + 0x1000;
|
|
.data BLOCK(__section_alignment__) :
|
|
{
|
|
*(.data)
|
|
}
|
|
/DISCARD/ : { *(.*) }
|
|
}
|