Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/include/hw/hw.h
2023-03-06 14:48:14 +01:00

11 lines
195 B
C

#ifndef QEMU_HW_H
#define QEMU_HW_H
#ifdef CONFIG_USER_ONLY
#error Cannot include hw/hw.h from user emulation
#endif
G_NORETURN void hw_error(const char *fmt, ...) G_GNUC_PRINTF(1, 2);
#endif