Core: remove CX86Ops::CompVariableToX86reg

This commit is contained in:
zilmar 2022-11-07 10:18:55 +10:30
parent 09fb90117e
commit 9dd2df36d4
2 changed files with 0 additions and 8 deletions

View File

@ -261,13 +261,6 @@ void CX86Ops::CompX86regToVariable(x86Reg Reg, void * Variable, const char * Var
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)
{
uint16_t x86Command = 0;

View File

@ -86,7 +86,6 @@ public:
void CompConstToX86reg(x86Reg Reg, uint32_t Const);
void CompConstToX86regPointer(x86Reg Reg, uint32_t Const);
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 DecX86reg(x86Reg Reg);
void DivX86reg(x86Reg Reg);