mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 09:01:42 +00:00
12 lines
136 B
C#
12 lines
136 B
C#
|
using System;
|
||
|
|
||
|
namespace ARMeilleure.State
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum FPSR
|
||
|
{
|
||
|
Ufc = 1 << 3,
|
||
|
Qc = 1 << 27
|
||
|
}
|
||
|
}
|