1
0
Fork 0

Add some more unusual instructions

This commit is contained in:
Duncan Ogilvie 2022-02-14 23:35:46 +01:00
parent 80d6f6002c
commit 3370207f03
1 changed files with 4 additions and 1 deletions

View File

@ -617,7 +617,10 @@ bool Zydis::IsUnusual() const
|| id == ZYDIS_MNEMONIC_UD1
|| id == ZYDIS_MNEMONIC_UD2
|| id == ZYDIS_MNEMONIC_VMCALL
|| id == ZYDIS_MNEMONIC_VMFUNC;
|| id == ZYDIS_MNEMONIC_VMFUNC
|| id == ZYDIS_MNEMONIC_OUTSB
|| id == ZYDIS_MNEMONIC_OUTSW
|| id == ZYDIS_MNEMONIC_OUTSD;
}
std::string Zydis::Mnemonic() const