summaryrefslogtreecommitdiff
path: root/x86_backend.h
blob: 2bfac7e8b413dcd5552743969194152f9ea72861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef X86_BACKEND_H_
#define X86_BACKEND_H_

typedef struct {
	int32_t disp;
	uint8_t mode;
	uint8_t base;
	uint8_t index;
	uint8_t cycles;
} x86_ea;

typedef struct {
	uint8_t  *base;
	int32_t  *offsets;
} native_map_slot;

#endif //X86_BACKEND_H_