2007-11-17 20:14:51 +03:00
|
|
|
/* Declarations for use by hardware emulation. */
|
|
|
|
#ifndef QEMU_HW_H
|
|
|
|
#define QEMU_HW_H
|
|
|
|
|
2014-06-27 10:40:04 +04:00
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
#error Cannot include hw/hw.h from user emulation
|
2009-05-19 19:17:58 +04:00
|
|
|
#endif
|
|
|
|
|
2014-06-27 10:40:04 +04:00
|
|
|
#include "exec/cpu-common.h"
|
2016-03-16 12:24:54 +03:00
|
|
|
#include "qom/object.h"
|
|
|
|
#include "exec/memory.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/irq.h"
|
2012-12-17 21:19:50 +04:00
|
|
|
#include "migration/vmstate.h"
|
2017-04-20 19:52:18 +03:00
|
|
|
#include "migration/qemu-file-types.h"
|
2016-03-09 14:19:37 +03:00
|
|
|
#include "qemu/module.h"
|
2016-10-24 12:19:49 +03:00
|
|
|
#include "sysemu/reset.h"
|
2007-11-17 20:14:51 +03:00
|
|
|
|
2016-03-09 14:19:37 +03:00
|
|
|
void QEMU_NORETURN hw_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
|
|
|
|
|
2007-11-17 20:14:51 +03:00
|
|
|
#endif
|