1
0
mirror of https://github.com/olofk/serv.git synced 2026-05-02 14:39:58 +00:00

Update Compliance testing framework

This commit is contained in:
Abdulwadoodd
2022-10-03 14:33:11 +05:00
committed by Olof Kindgren
parent 1bdd42acb5
commit 41ae06f6cf
11 changed files with 436 additions and 0 deletions

18
verif/plugin-sail_cSim/env/link.ld vendored Normal file
View File

@@ -0,0 +1,18 @@
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 = .;
}