mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-22 14:47:10 +02:00
21 lines
504 B
C#
21 lines
504 B
C#
namespace Ryujinx.HLE.HOS.Tamper.Operations
|
|
{
|
|
class OpAnd<T> : IOperation where T : unmanaged
|
|
{
|
|
IOperand _destination;
|
|
IOperand _lhs;
|
|
IOperand _rhs;
|
|
|
|
public OpAnd(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>()));
|
|
}
|
|
}
|
|
}
|