annotate x86_backend.h @ 222:b52f81d7cad0
Added testcases for muls, mulu, abcd and sbcd
author |
Mike Pavone <pavone@retrodev.com> |
date |
Sat, 20 Apr 2013 17:32:34 -0700 |
parents |
464513050c85 |
children |
d9bf8e61c33c |
rev |
line source |
211
|
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
|