diff options
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs')
| -rw-r--r-- | src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs new file mode 100644 index 00000000..b08dd957 --- /dev/null +++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs @@ -0,0 +1,21 @@ +namespace Ryujinx.HLE.HOS.Tamper.Operations +{ + class OpRsh<T> : IOperation where T : unmanaged + { + IOperand _destination; + IOperand _lhs; + IOperand _rhs; + + public OpRsh(IOperand destination, IOperand lhs, IOperand rhs) + { + _destination = destination; + _lhs = lhs; + _rhs = rhs; + } + + public void Execute() + { + _destination.Set((T)((dynamic)_lhs.Get<T>() >> (dynamic)_rhs.Get<T>())); + } + } +} |
