aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Decoders/Condition.cs
blob: 961825a103ef1921c8c17e56f0265bf787f108f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace ARMeilleure.Decoders
{
    enum Condition
    {
        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,
    }

    static class ConditionExtensions
    {
        public static Condition Invert(this Condition cond)
        {
            // Bit 0 of all conditions is basically a negation bit, so
            // inverting this bit has the effect of inverting the condition.
            return (Condition)((int)cond ^ 1);
        }
    }
}