mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
10 lines
156 B
Raku
10 lines
156 B
Raku
_START = DEFINED(_START) ? _START : 0x900;
|
|
SECTIONS
|
|
{
|
|
. = _START;
|
|
.text : {*(.text .pr)}
|
|
.data : {*(.data)}
|
|
.bss : {*(.bss)}
|
|
/DISCARD/ : {*(*)}
|
|
}
|