aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
diff options
context:
space:
mode:
authorTobias <thm.frey@gmail.com>2018-06-10 06:36:07 +0200
committergdkchan <gab.dark.100@gmail.com>2018-06-10 01:36:07 -0300
commit7b7dbdcc6ab122faffec487b797fb6cc7a5585c9 (patch)
treefa2571d5fd0515083656b694755caf748988867d /Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
parent49fd76db0fee72870e0b7fee73e6b6380fa00823 (diff)
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
Diffstat (limited to 'Ryujinx.Core/OsHle/Kernel/SvcHandler.cs')
-rw-r--r--Ryujinx.Core/OsHle/Kernel/SvcHandler.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs b/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
index 3a9166e4..70ed3853 100644
--- a/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
+++ b/Ryujinx.Core/OsHle/Kernel/SvcHandler.cs
@@ -47,6 +47,7 @@ namespace Ryujinx.Core.OsHle.Kernel
{ 0x0b, SvcSleepThread },
{ 0x0c, SvcGetThreadPriority },
{ 0x0d, SvcSetThreadPriority },
+ { 0x0e, SvcGetThreadCoreMask },
{ 0x0f, SvcSetThreadCoreMask },
{ 0x10, SvcGetCurrentProcessorNumber },
{ 0x12, SvcClearEvent },