master
h 20 lines 402 Bytes
Raw
1 /*
2 * Nitro Enclaves (accel) machine
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7 #ifndef HW_NITRO_MACHINE_H
8 #define HW_NITRO_MACHINE_H
9
10 #include "hw/core/boards.h"
11 #include "qom/object.h"
12
13 #define TYPE_NITRO_MACHINE MACHINE_TYPE_NAME("nitro")
14 OBJECT_DECLARE_SIMPLE_TYPE(NitroMachineState, NITRO_MACHINE)
15
16 struct NitroMachineState {
17 MachineState parent;
18 };
19
20 #endif /* HW_NITRO_MACHINE_H */