using System.Numerics; namespace Ryujinx.HLE.HOS.Tamper.Operations { class OpOr : IOperation where T : unmanaged, IBinaryNumber { readonly IOperand _destination; readonly IOperand _lhs; readonly IOperand _rhs; public OpOr(IOperand destination, IOperand lhs, IOperand rhs) { _destination = destination; _lhs = lhs; _rhs = rhs; } public void Execute() { _destination.Set(_lhs.Get() | _rhs.Get()); } public static IOperation CreateFor(IOperand destination, IOperand lhs, IOperand rhs) where T1 : unmanaged, IBinaryInteger => new OpOr(destination, lhs, rhs); } }