mirror of
https://github.com/xemu-project/xemu.git
synced 2024-12-04 09:53:32 +00:00
ccbaa553a1
Add runtime supporting the nios2-semi.c interface. Execute the hello and memory multiarch tests. Cc: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220421151735.31996-64-richard.henderson@linaro.org>
67 lines
1.3 KiB
Plaintext
67 lines
1.3 KiB
Plaintext
/*
|
|
* Link script for the Nios2 10m50-ghrd board.
|
|
*
|
|
* Copyright Linaro Ltd 2022
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
MEMORY
|
|
{
|
|
tpf (rx) : ORIGIN = 0xc0000000, LENGTH = 1K
|
|
ram (rwx) : ORIGIN = 0xc8000000, LENGTH = 128M
|
|
}
|
|
|
|
PHDRS
|
|
{
|
|
RAM PT_LOAD;
|
|
}
|
|
|
|
ENTRY(_start)
|
|
EXTERN(_start)
|
|
EXTERN(_interrupt)
|
|
EXTERN(_fast_tlb_miss)
|
|
|
|
SECTIONS
|
|
{
|
|
/* Begin at the (hardcoded) _interrupt entry point. */
|
|
.text 0xc8000120 : {
|
|
*(.text.intr)
|
|
*(.text .text.* .gnu.linkonce.t.*)
|
|
} >ram :RAM
|
|
|
|
.rodata : ALIGN(4) {
|
|
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
|
} > ram :RAM
|
|
|
|
.eh_frame_hdr : ALIGN (4) {
|
|
KEEP (*(.eh_frame_hdr))
|
|
*(.eh_frame_entry .eh_frame_entry.*)
|
|
} >ram :RAM
|
|
.eh_frame : ALIGN (4) {
|
|
KEEP (*(.eh_frame)) *(.eh_frame.*)
|
|
} >ram :RAM
|
|
|
|
.data : ALIGN(4) {
|
|
*(.shdata)
|
|
*(.data .data.* .gnu.linkonce.d.*)
|
|
. = ALIGN(4);
|
|
_gp = ABSOLUTE(. + 0x8000);
|
|
*(.got.plt) *(.got)
|
|
*(.lit8)
|
|
*(.lit4)
|
|
*(.sdata .sdata.* .gnu.linkonce.s.*)
|
|
} >ram :RAM
|
|
|
|
.bss : ALIGN(4) {
|
|
__bss_start = ABSOLUTE(.);
|
|
*(.sbss .sbss.* .gnu.linkonce.sb.*)
|
|
*(.scommon)
|
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
|
*(COMMON)
|
|
. = ALIGN(4);
|
|
__bss_end = ABSOLUTE(.);
|
|
} >ram :RAM
|
|
|
|
__stack = ORIGIN(ram) + LENGTH(ram);
|
|
}
|