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