summary refs log tree commit diff stats
path: root/linux-user/hppa/elfload.c
blob: 9dd3fe092a82efcb112211e50cd9f62efa44193f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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";
}