Add optype for in/out/iretd for x86.udis

This commit is contained in:
pancake 2014-10-05 16:17:06 +02:00
parent 6cf60a68c9
commit a77daafd27

View File

@ -492,7 +492,12 @@ default:
case UD_Ihlt:
op->type = R_ANAL_OP_TYPE_TRAP; //HALT;
break;
case UD_Iin:
case UD_Iout:
op->type = R_ANAL_OP_TYPE_IO;
break;
case UD_Iret:
case UD_Iiretd:
case UD_Iretf:
case UD_Isysret:
op->type = R_ANAL_OP_TYPE_RET;