mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 09:39:56 -06:00
Add MUL (vector by element), fix FCVTN, make svcs use MakeError too
This commit is contained in:
11
Ryujinx.Core/OsHle/KernelErr.cs
Normal file
11
Ryujinx.Core/OsHle/KernelErr.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Ryujinx.Core.OsHle
|
||||
{
|
||||
static class KernelErr
|
||||
{
|
||||
public const int InvalidMemRange = 110;
|
||||
public const int InvalidHandle = 114;
|
||||
public const int Timeout = 117;
|
||||
public const int InvalidInfo = 120;
|
||||
public const int InvalidIpcReq = 123;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user