mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-14 09:39:20 -04:00
8 lines
116 B
Raku
8 lines
116 B
Raku
_START = DEFINED(_START) ? _START : 0x9000000;
|
|
SECTIONS
|
|
{
|
|
. = _START;
|
|
.text : {*(.text)}
|
|
/DISCARD/ : {*(*)}
|
|
}
|