mirror of
https://github.com/Ryujinx-NX/Ryujinx.git
synced 2024-11-15 05:27:42 -07:00
e36e97c64d
* CPU: This PR fixes Fpscr, among other things. * Add Fpscr.Qc = 1 if sat. for Vqrshrn & Vqrshrun. * Fix Vcmp & Vcmpe opcode table. * Revert "Fix Vcmp & Vcmpe opcode table." This reverts commit c117d9410d693185ff5f8ee8e457ffbfb2027dd5. * Address PR feedbacks.
11 lines
150 B
C#
11 lines
150 B
C#
namespace ARMeilleure.State
|
|
{
|
|
public enum FPState
|
|
{
|
|
VFlag = 28,
|
|
CFlag = 29,
|
|
ZFlag = 30,
|
|
NFlag = 31
|
|
}
|
|
}
|