diff options
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs')
-rw-r--r-- | src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs new file mode 100644 index 00000000..b9c67d04 --- /dev/null +++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs @@ -0,0 +1,21 @@ +namespace Ryujinx.HLE.HOS.Tamper.Operations +{ + class OpSub<T> : IOperation where T : unmanaged + { + IOperand _destination; + IOperand _lhs; + IOperand _rhs; + + public OpSub(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>())); + } + } +} |