Update APState.cs

This commit is contained in:
LDj3SNuD 2018-10-23 00:01:06 +02:00 committed by GitHub
parent 226d057778
commit 137278516d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ using System;
namespace ChocolArm64.State
{
[Flags]
public enum APState
enum APState
{
VBit = 28,
CBit = 29,
@ -20,4 +20,4 @@ namespace ChocolArm64.State
NZCV = NZ | CV
}
}
}