mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
21 lines
404 B
C
21 lines
404 B
C
|
|
/*
|
||
|
|
* QOM type definitions for riscv32 / riscv64 machines
|
||
|
|
*
|
||
|
|
* Copyright (c) rev.ng Labs Srl.
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef HW_RISCV_MACHINES_QOM_H
|
||
|
|
#define HW_RISCV_MACHINES_QOM_H
|
||
|
|
|
||
|
|
#include "hw/core/boards.h"
|
||
|
|
|
||
|
|
#define TYPE_TARGET_RISCV32_MACHINE \
|
||
|
|
"target-info-riscv32-machine"
|
||
|
|
|
||
|
|
#define TYPE_TARGET_RISCV64_MACHINE \
|
||
|
|
"target-info-riscv64-machine"
|
||
|
|
|
||
|
|
#endif
|