aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchIndir.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/OpCodeBranchIndir.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Decoders/OpCodeBranchIndir.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchIndir.cs b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchIndir.cs
new file mode 100644
index 00000000..3e694e61
--- /dev/null
+++ b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchIndir.cs
@@ -0,0 +1,23 @@
+using Ryujinx.Graphics.Shader.Instructions;
+using System.Collections.Generic;
+
+namespace Ryujinx.Graphics.Shader.Decoders
+{
+ class OpCodeBranchIndir : OpCode
+ {
+ public HashSet<Block> PossibleTargets { get; }
+
+ public Register Ra { get; }
+
+ public int Offset { get; }
+
+ public OpCodeBranchIndir(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode)
+ {
+ PossibleTargets = new HashSet<Block>();
+
+ Ra = new Register(opCode.Extract(8, 8), RegisterType.Gpr);
+
+ Offset = ((int)(opCode >> 20) << 8) >> 8;
+ }
+ }
+} \ No newline at end of file