Add function to emit CMP, or TEST when possible

Also, a spelling mistake.
This commit is contained in:
Sintendo
2015-02-21 11:12:03 +01:00
parent b35c34186c
commit c19482c9a3
4 changed files with 16 additions and 2 deletions

View File

@ -465,6 +465,8 @@ public:
void MOV (int bits, const OpArg &a1, const OpArg &a2);
void TEST(int bits, const OpArg &a1, const OpArg &a2);
void CMP_or_TEST(int bits, const OpArg &a1, const OpArg &a2);
// Are these useful at all? Consider removing.
void XCHG(int bits, const OpArg &a1, const OpArg &a2);
void XCHG_AHAL();