Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-scripts/default-script.t
2023-03-06 14:48:14 +01:00

9 lines
156 B
Raku

_START = DEFINED(_START) ? _START : 0x900;
SECTIONS
{
. = _START;
.text : {*(.text .pr)}
.data : {*(.data)}
.bss : {*(.bss)}
/DISCARD/ : {*(*)}
}