aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Cpu/Decoder/AOpCodeBImm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx/Cpu/Decoder/AOpCodeBImm.cs')
-rw-r--r--Ryujinx/Cpu/Decoder/AOpCodeBImm.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Ryujinx/Cpu/Decoder/AOpCodeBImm.cs b/Ryujinx/Cpu/Decoder/AOpCodeBImm.cs
new file mode 100644
index 00000000..2a56d4af
--- /dev/null
+++ b/Ryujinx/Cpu/Decoder/AOpCodeBImm.cs
@@ -0,0 +1,11 @@
+using ChocolArm64.Instruction;
+
+namespace ChocolArm64.Decoder
+{
+ class AOpCodeBImm : AOpCode
+ {
+ public long Imm { get; protected set; }
+
+ public AOpCodeBImm(AInst Inst, long Position) : base(Inst, Position) { }
+ }
+} \ No newline at end of file