aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/KernelErr.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-03-05 16:18:37 -0300
committergdkchan <gab.dark.100@gmail.com>2018-03-05 16:18:37 -0300
commit59d1b2ad83385dad49cf930e826ce0693b9cee2c (patch)
tree3a5cf63453273d8469a63c673dc3929c0d0948fa /Ryujinx.Core/OsHle/KernelErr.cs
parent0e343a748d9dcfe50b885b8c0c5e886bc44080ac (diff)
Add MUL (vector by element), fix FCVTN, make svcs use MakeError too
Diffstat (limited to 'Ryujinx.Core/OsHle/KernelErr.cs')
-rw-r--r--Ryujinx.Core/OsHle/KernelErr.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/KernelErr.cs b/Ryujinx.Core/OsHle/KernelErr.cs
new file mode 100644
index 00000000..19983af1
--- /dev/null
+++ b/Ryujinx.Core/OsHle/KernelErr.cs
@@ -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;
+ }
+} \ No newline at end of file