risc-v-tlm/doc/riscv-arch-test/RISCV_TLM/link.ld

19 lines
325 B
Plaintext
Raw Permalink Normal View History

2022-09-15 21:34:58 +08:00
OUTPUT_ARCH( "riscv" )
ENTRY(rvtest_entry_point)
SECTIONS
{
. = 0x00000000;
.text.init : { *(.text.init) }
. = ALIGN(0x1000);
/* .tohost : { *(.tohost) } */
. = ALIGN(0x1000);
.text : { *(.text) }
. = ALIGN(0x1000);
.data : { *(.data) }
.data.string : { *(.data.string)}
.bss : { *(.bss) }
_end = .;
}