aloha
This commit is contained in:
commit
b7e1d9930d
230 changed files with 17548 additions and 0 deletions
23
Ryujinx/Cpu/State/APState.cs
Normal file
23
Ryujinx/Cpu/State/APState.cs
Normal file
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
|
||||
namespace ChocolArm64.State
|
||||
{
|
||||
[Flags]
|
||||
public enum APState
|
||||
{
|
||||
VBit = 28,
|
||||
CBit = 29,
|
||||
ZBit = 30,
|
||||
NBit = 31,
|
||||
|
||||
V = 1 << VBit,
|
||||
C = 1 << CBit,
|
||||
Z = 1 << ZBit,
|
||||
N = 1 << NBit,
|
||||
|
||||
NZ = N | Z,
|
||||
CV = C | V,
|
||||
|
||||
NZCV = NZ | CV
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue