ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/uae_cpu/compiler/flags_x86.h
Revision: 1.1
Committed: 2002-09-17T16:04:06Z (21 years, 9 months ago) by gbeauche
Content type: text/plain
Branch: MAIN
Log Message:
Import JIT compiler

File Contents

# Content
1 #ifndef NATIVE_FLAGS_X86_H
2 #define NATIVE_FLAGS_X86_H
3
4 /* Native integer code conditions */
5 enum {
6 NATIVE_CC_HI = 7,
7 NATIVE_CC_LS = 6,
8 NATIVE_CC_CC = 3,
9 NATIVE_CC_CS = 2,
10 NATIVE_CC_NE = 5,
11 NATIVE_CC_EQ = 4,
12 NATIVE_CC_VC = 11,
13 NATIVE_CC_VS = 10,
14 NATIVE_CC_PL = 9,
15 NATIVE_CC_MI = 8,
16 NATIVE_CC_GE = 13,
17 NATIVE_CC_LT = 12,
18 NATIVE_CC_GT = 15,
19 NATIVE_CC_LE = 14
20 };
21
22 #endif /* NATIVE_FLAGS_X86_H */