mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-10-03 13:05:50 -05:00
Move solution and projects to src
This commit is contained in:
21
src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs
Normal file
21
src/Ryujinx.HLE/HOS/Tamper/Operations/OpSub.cs
Normal file
@@ -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>()));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user