quic/qbox
Loading...
Searching...
No Matches
target_info.h
1/*
2 * This file is part of libqemu-cxx
3 * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
4 * Author: GreenSocs 2021
5 *
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#pragma once
10
11namespace qemu {
12
13enum Target {
14 AARCH64,
15 RISCV64,
16 RISCV32,
17 MICROBLAZE,
18 MICROBLAZEEL,
19 HEXAGON,
20};
21
22const char* get_target_name(Target t);
23const char* get_target_lib(Target t);
24
25} // namespace qemu
Definition target.h:160