mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-04 00:31:27 +00:00
13 lines
147 B
Raku
13 lines
147 B
Raku
SECTIONS {
|
|
. = SIZEOF_HEADERS;
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
. = ALIGN (0x1000);
|
|
.data : {
|
|
_data_start = .;
|
|
*(.data)
|
|
}
|
|
/DISCARD/ : { *(.*) }
|
|
}
|