1
0
Fork 0
mirror of https://github.com/yuzu-emu/unicorn.git synced 2025-03-08 10:09:43 +00:00
unicorn/qemu/include/hw/xen/xen.h

14 lines
203 B
C
Raw Normal View History

#ifndef QEMU_HW_XEN_H
#define QEMU_HW_XEN_H
#include "qemu-common.h"
#include "exec/cpu-common.h"
static inline bool xen_enabled(void)
{
// Unicorn: Always return false
return false;
}
#endif