2018-10-31 02:43:02 +01:00
|
|
|
namespace ChocolArm64.Decoders
|
|
|
|
{
|
2019-01-25 02:59:53 +01:00
|
|
|
enum Condition
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
|
|
|
Eq = 0,
|
|
|
|
Ne = 1,
|
|
|
|
GeUn = 2,
|
|
|
|
LtUn = 3,
|
|
|
|
Mi = 4,
|
|
|
|
Pl = 5,
|
|
|
|
Vs = 6,
|
|
|
|
Vc = 7,
|
|
|
|
GtUn = 8,
|
|
|
|
LeUn = 9,
|
|
|
|
Ge = 10,
|
|
|
|
Lt = 11,
|
|
|
|
Gt = 12,
|
|
|
|
Le = 13,
|
|
|
|
Al = 14,
|
|
|
|
Nv = 15
|
|
|
|
}
|
2019-04-26 06:55:12 +02:00
|
|
|
|
|
|
|
static class ConditionExtensions
|
|
|
|
{
|
|
|
|
public static Condition Invert(this Condition cond)
|
|
|
|
{
|
2019-07-02 04:39:22 +02:00
|
|
|
// Bit 0 of all conditions is basically a negation bit, so
|
|
|
|
// inverting this bit has the effect of inverting the condition.
|
2019-04-26 06:55:12 +02:00
|
|
|
return (Condition)((int)cond ^ 1);
|
|
|
|
}
|
|
|
|
}
|
2018-10-31 02:43:02 +01:00
|
|
|
}
|