quic/qbox
Loading...
Searching...
No Matches
microblaze.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 2020
5 *
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#pragma once
10
11#include <libqemu-cxx/libqemu-cxx.h>
12
13namespace qemu {
14
15class CpuMicroblaze : public Cpu
16{
17public:
18 static constexpr const char* const TYPE = "microblaze-cpu";
19
20 CpuMicroblaze() = default;
21 CpuMicroblaze(const CpuMicroblaze&) = default;
22 CpuMicroblaze(const Object& o): Cpu(o) {}
23};
24
25} // namespace qemu
Definition target.h:160
Definition microblaze.h:16
Definition libqemu-cxx.h:664
Definition libqemu-cxx.h:229