diff options
Diffstat (limited to 'sp/src/utils/lzma/C/7zip/Compress/Branch/x86.h')
| -rw-r--r-- | sp/src/utils/lzma/C/7zip/Compress/Branch/x86.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sp/src/utils/lzma/C/7zip/Compress/Branch/x86.h b/sp/src/utils/lzma/C/7zip/Compress/Branch/x86.h new file mode 100644 index 00000000..10d03982 --- /dev/null +++ b/sp/src/utils/lzma/C/7zip/Compress/Branch/x86.h @@ -0,0 +1,19 @@ +// x86.h + +#ifndef __X86_H +#define __X86_H + +#include "BranchCoder.h" +#include "BranchX86.h" + +struct CBranch86 +{ + UInt32 _prevMask; + UInt32 _prevPos; + void x86Init() { x86_Convert_Init(_prevMask, _prevPos); } +}; + +MyClassB(BCJ_x86, 0x01, 3, CBranch86 , + virtual void SubInit() { x86Init(); }) + +#endif |