Sign in
opensecura
/
3p
/
lowrisc
/
opentitan
/
7b12ee6a27ce1ca0fd92bb806bb47b5d397f9e85
/
.
/
sw
/
vendor
/
riscv_compliance
/
riscv-test-env
/
pt
/
link.ld
blob: b3e315e781401819ed774c3beedb8cab5c703238 [
file
] [
log
] [
blame
]
OUTPUT_ARCH
(
"riscv"
)
ENTRY
(
_start
)
SECTIONS
{
.
=
0x80000000
;
.
text
.
init
:
{
*(.
text
.
init
)
}
.
=
ALIGN
(
0x1000
);
.
tohost
:
{
*(.
tohost
)
}
.
=
ALIGN
(
0x1000
);
.
text
:
{
*(.
text
)
}
.
=
ALIGN
(
0x1000
);
.
data
:
{
*(.
data
)
}
.
bss
:
{
*(.
bss
)
}
_end
=
.;
}