Files
qemu/linux-user/hppa/elfload.c
Richard Henderson eaf983e04b linux-user/hppa: Create get_elf_platform
Move the string literal to a new function.

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2025-08-28 06:39:25 +10:00

17 lines
252 B
C

/* SPDX-License-Identifier: GPL-2.0-or-later */
#include "qemu/osdep.h"
#include "qemu.h"
#include "loader.h"
const char *get_elf_cpu_model(uint32_t eflags)
{
return "hppa";
}
const char *get_elf_platform(CPUState *cs)
{
return "PARISC";
}