changeset 12218 | bb5522e88ab2 |
12217:ea891871f481 | 12218:bb5522e88ab2 |
---|---|
1 // x86.h |
|
2 |
|
3 #ifndef __X86_H |
|
4 #define __X86_H |
|
5 |
|
6 #include "BranchCoder.h" |
|
7 extern "C" |
|
8 { |
|
9 #include "../../../../C/Compress/Branch/BranchX86.h" |
|
10 } |
|
11 |
|
12 struct CBranch86 |
|
13 { |
|
14 UInt32 _prevMask; |
|
15 void x86Init() { x86_Convert_Init(_prevMask); } |
|
16 }; |
|
17 |
|
18 MyClassB(BCJ_x86, 0x01, 3, CBranch86 , |
|
19 virtual void SubInit() { x86Init(); }) |
|
20 |
|
21 #endif |