aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/State/Aarch32Mode.cs
blob: add1cd26f79f30a31fce9c2760202562529f2fe6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace ARMeilleure.State
{
    enum Aarch32Mode
    {
        User = 0b10000,
        Fiq = 0b10001,
        Irq = 0b10010,
        Supervisor = 0b10011,
        Monitor = 0b10110,
        Abort = 0b10111,
        Hypervisor = 0b11010,
        Undefined = 0b11011,
        System = 0b11111,
    }
}