Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/ld/testsuite/ld-scripts/assign-loc.t

21 lines
223 B
Perl
Raw Normal View History

2023-03-06 14:48:14 +01:00
SECTIONS
{
. = 0x2000 ;
_start = .;
HEAP_SIZE = 0x100;
.heap : {
. = HEAP_SIZE;
. = ALIGN(4);
}
_end = .;
.text : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss) }
/DISCARD/ : { *(*) }
}