nim: Implement IsLargeResourceAvailable (#1821)

* nim: Implement IsLargeResourceAvailable

* Fix comments
This commit is contained in:
Ac_K
2020-12-17 05:19:28 +01:00
committed by GitHub
parent f5d64b4d68
commit eae39f80e7
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,12 @@
namespace Ryujinx.HLE.HOS.Services.Nim
{
enum ResultCode
{
ModuleId = 137,
ErrorCodeShift = 9,
Success = 0,
NullArgument = (90 << ErrorCodeShift) | ModuleId
}
}