mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:49:15 +00:00
15 lines
333 B
C#
15 lines
333 B
C#
|
namespace ChocolArm64.State
|
||
|
{
|
||
|
enum Aarch32Mode
|
||
|
{
|
||
|
User = 0b10000,
|
||
|
Fiq = 0b10001,
|
||
|
Irq = 0b10010,
|
||
|
Supervisor = 0b10011,
|
||
|
Monitor = 0b10110,
|
||
|
Abort = 0b10111,
|
||
|
Hypervisor = 0b11010,
|
||
|
Undefined = 0b11011,
|
||
|
System = 0b11111
|
||
|
}
|
||
|
}
|