Welcome to mirror list, hosted at ThFree Co, Russian Federation.

x86.h « Branch « Compress « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39ba5ae525dcd6e016ef741f01f2e6e53be034e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// x86.h

#ifndef __X86_H
#define __X86_H

#include "BranchCoder.h"
extern "C" 
{ 
#include "../../../../C/Compress/Branch/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