1
0
mirror of https://github.com/olofk/serv.git synced 2026-02-10 17:49:45 +00:00
Files
olofk.serv/verif/plugin-sail_cSim/env/link.ld
2022-12-25 21:23:51 +01:00

19 lines
320 B
Plaintext

OUTPUT_ARCH( "riscv" )
ENTRY(rvtest_entry_point)
SECTIONS
{
. = 0x80000000;
.text.init : { *(.text.init) }
. = ALIGN(0x1000);
.tohost : { *(.tohost) }
. = ALIGN(0x1000);
.text : { *(.text) }
. = ALIGN(0x1000);
.data : { *(.data) }
.data.string : { *(.data.string)}
.bss : { *(.bss) }
_end = .;
}