1
0
Fork 0

DBG: fixed another problem with Zydis

This commit is contained in:
Duncan Ogilvie 2017-10-14 15:42:02 +02:00
parent 6f7af9b8da
commit d6ca58efd1
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
2 changed files with 6 additions and 3 deletions

View File

@ -292,7 +292,7 @@ void AdvancedAnalysis::writeDataXrefs()
case 256:
type = enc_ymmword;
break;
//case 64: type = enc_zmmword; break;
//case 512: type = enc_zmmword; break;
default:
__debugbreak();
}

View File

@ -165,12 +165,15 @@ static void HandleCapstoneOperand(Zydis & cp, int opindex, DISASM_ARG* arg, bool
MemRead(value, (unsigned char*)&arg->memvalue, 4);
break;
#ifdef _WIN64
case 48:
MemRead(value, (unsigned char*)&arg->memvalue, 6);
break;
case 64:
MemRead(value, (unsigned char*)&arg->memvalue, 8);
break;
#endif //_WIN64
default:
__debugbreak();
//TODO: not supported
#endif //_WIN64
}
}
}