comparison x86_backend.h @ 211:464513050c85

Small bit of cleanup
author Mike Pavone <pavone@retrodev.com>
date Tue, 16 Apr 2013 09:31:21 -0700
parents
children d9bf8e61c33c
comparison
equal deleted inserted replaced
210:4beaad3a9a50 211:464513050c85
1 #ifndef X86_BACKEND_H_
2 #define X86_BACKEND_H_
3
4 typedef struct {
5 int32_t disp;
6 uint8_t mode;
7 uint8_t base;
8 uint8_t index;
9 uint8_t cycles;
10 } x86_ea;
11
12 typedef struct {
13 uint8_t *base;
14 int32_t *offsets;
15 } native_map_slot;
16
17 #endif //X86_BACKEND_H_
18