aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests/x86_emulator/x86_emulate.c
blob: 0306f8ebc6d5ead435c708277c1013cb1d6b7c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <xen/xen.h>

typedef bool bool_t;

#define BUG() abort()

#define cpu_has_amd_erratum(nr) 0

#include "x86_emulate/x86_emulate.h"
#include "x86_emulate/x86_emulate.c"