2007-11-17 18:14:51 +01:00
|
|
|
#ifndef QEMU_HW_H
|
|
|
|
#define QEMU_HW_H
|
|
|
|
|
2014-06-27 08:40:04 +02:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
#error Cannot include hw/hw.h from user emulation
|
2009-05-19 17:17:58 +02:00
|
|
|
#endif
|
|
|
|
|
2016-03-09 12:19:37 +01:00
|
|
|
void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#endif
|