mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-16 07:54:18 +00:00
Move solution and projects to src
This commit is contained in:
21
src/Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs
Normal file
21
src/Ryujinx.HLE/HOS/Tamper/Operations/OpXor.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Ryujinx.HLE.HOS.Tamper.Operations
|
||||
{
|
||||
class OpXor<T> : IOperation where T : unmanaged
|
||||
{
|
||||
IOperand _destination;
|
||||
IOperand _lhs;
|
||||
IOperand _rhs;
|
||||
|
||||
public OpXor(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