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