aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs')
-rw-r--r--Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs
new file mode 100644
index 00000000..c1d9eeed
--- /dev/null
+++ b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
+{
+ [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)]
+ public class RAttribute : Attribute
+ {
+ public readonly int Index;
+
+ public RAttribute(int index)
+ {
+ Index = index;
+ }
+ }
+}