diff options
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/OpCodeLopImm.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/Decoders/OpCodeLopImm.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/OpCodeLopImm.cs b/Ryujinx.Graphics.Shader/Decoders/OpCodeLopImm.cs index a2f091a2..b2443688 100644 --- a/Ryujinx.Graphics.Shader/Decoders/OpCodeLopImm.cs +++ b/Ryujinx.Graphics.Shader/Decoders/OpCodeLopImm.cs @@ -6,6 +6,8 @@ namespace Ryujinx.Graphics.Shader.Decoders { public int Immediate { get; } + public new static OpCode Create(InstEmitter emitter, ulong address, long opCode) => new OpCodeLopImm(emitter, address, opCode); + public OpCodeLopImm(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode) { Immediate = DecoderHelper.DecodeS20Immediate(opCode); |
