mirror of
https://github.com/yuzu-mirror/unicorn.git
synced 2025-12-06 07:12:03 +01:00
14 lines
203 B
C
14 lines
203 B
C
#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
|