allwinner_a64/android/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/rgn-at6.t
2018-08-08 20:10:12 +08:00

11 lines
170 B
Raku

MEMORY
{
ram : ORIGIN = 0x10000, LENGTH = 0x10000
}
SECTIONS
{
.text : {*(.text)} > ram AT> ram
.data : ALIGN (16) {*(.data)} > ram AT> ram
/DISCARD/ : {*(*)}
}