Ryujinx/Ryujinx.Core/OsHle/Services/Nfp/State.cs
Tobias 7b7dbdcc6a Add stubs for Nfp and Acc + SvcGetThreadCoreMask implementation (#133)
* Stubs for NFP

* Stubs for ACC

* Implement SvcGetThreadCoreMask

* Fixup

* Fixup 2

* Fixup 3

* Address Cyuubi's feedback
2018-06-10 01:36:07 -03:00

8 lines
127 B
C#

namespace Ryujinx.Core.OsHle.Services.Nfp
{
enum State
{
NonInitialized = 0,
Initialized = 1
}
}