Add mips esil sltiu

This commit is contained in:
trndr 2014-12-05 18:34:22 +00:00 committed by pancake
parent ed1aae7fd1
commit 5c07526ece

View File

@ -287,6 +287,12 @@ static int analop_esil(RAnal *a, RAnalOp *op, ut64 addr, const ut8 *buf, int len
}
}
break;
case MIPS_INS_SLTIU:
{
r_strbuf_appendf (&op->esil, "%s,0xffffffff,&,%s,0xffffffff,<,?{%s,1,=,}{,%s,0,=,}",
ARG(1), ARG(2), ARG(0), ARG(0));
}
break;
}
return 0;
}