Core: remove CX86Ops::CompVariableToX86reg
This commit is contained in:
parent
09fb90117e
commit
9dd2df36d4
|
@ -261,13 +261,6 @@ void CX86Ops::CompX86regToVariable(x86Reg Reg, void * Variable, const char * Var
|
||||||
AddCode32((uint32_t)Variable);
|
AddCode32((uint32_t)Variable);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CX86Ops::CompVariableToX86reg(x86Reg Reg, void * Variable, const char * VariableName)
|
|
||||||
{
|
|
||||||
CodeLog(" cmp dword ptr [%s], %s", VariableName, x86_Name(Reg));
|
|
||||||
AddCode16((uint16_t)(0x0539 + (Reg * 0x800)));
|
|
||||||
AddCode32((uint32_t)Variable);
|
|
||||||
}
|
|
||||||
|
|
||||||
void CX86Ops::CompX86RegToX86Reg(x86Reg Destination, x86Reg Source)
|
void CX86Ops::CompX86RegToX86Reg(x86Reg Destination, x86Reg Source)
|
||||||
{
|
{
|
||||||
uint16_t x86Command = 0;
|
uint16_t x86Command = 0;
|
||||||
|
|
|
@ -86,7 +86,6 @@ public:
|
||||||
void CompConstToX86reg(x86Reg Reg, uint32_t Const);
|
void CompConstToX86reg(x86Reg Reg, uint32_t Const);
|
||||||
void CompConstToX86regPointer(x86Reg Reg, uint32_t Const);
|
void CompConstToX86regPointer(x86Reg Reg, uint32_t Const);
|
||||||
void CompX86regToVariable(x86Reg Reg, void * Variable, const char * VariableName);
|
void CompX86regToVariable(x86Reg Reg, void * Variable, const char * VariableName);
|
||||||
void CompVariableToX86reg(x86Reg Reg, void * Variable, const char * VariableName);
|
|
||||||
void CompX86RegToX86Reg(x86Reg Destination, x86Reg Source);
|
void CompX86RegToX86Reg(x86Reg Destination, x86Reg Source);
|
||||||
void DecX86reg(x86Reg Reg);
|
void DecX86reg(x86Reg Reg);
|
||||||
void DivX86reg(x86Reg Reg);
|
void DivX86reg(x86Reg Reg);
|
||||||
|
|
Loading…
Reference in New Issue