1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
OUTPUT_ARCH( "riscv" ) ENTRY( entry ) SECTIONS { .whereto 0x300 : { *(.whereto) } . = 0x800; .text : { *(.text) } _end = .; }