1
0
mirror of https://github.com/olofk/serv.git synced 2026-02-09 01:01:13 +00:00
Files
olofk.serv/verif/plugin-serv/env/link.ld
2024-08-22 22:18:45 +02:00

16 lines
257 B
Plaintext

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