|
|
1.1 misho 1: // x86.h
2:
3: #ifndef __X86_H
4: #define __X86_H
5:
6: #include "BranchCoder.h"
7: #include "BranchX86.h"
8:
9: struct CBranch86
10: {
11: UInt32 _prevMask;
12: UInt32 _prevPos;
13: void x86Init() { x86_Convert_Init(_prevMask, _prevPos); }
14: };
15:
16: MyClassB(BCJ_x86, 0x01, 3, CBranch86 ,
17: virtual void SubInit() { x86Init(); })
18:
19: #endif