mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
12 lines
150 B
Raku
12 lines
150 B
Raku
SECTIONS
|
|
{
|
|
.text 0x0000000: { *(.text) }
|
|
.data :
|
|
{
|
|
PROVIDE (__data_start = .);
|
|
*(.data)
|
|
}
|
|
__data_end = .;
|
|
/DISCARD/ : { *(.*) }
|
|
}
|