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