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:
committed by
Olof Kindgren
parent
1bdd42acb5
commit
41ae06f6cf
18
verif/plugin-sail_cSim/env/link.ld
vendored
Normal file
18
verif/plugin-sail_cSim/env/link.ld
vendored
Normal 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 = .;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user