mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-30 05:52:22 -05:00
Move solution and projects to src
This commit is contained in:
21
src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs
Normal file
21
src/Ryujinx.HLE/HOS/Tamper/Operations/OpRsh.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
namespace Ryujinx.HLE.HOS.Tamper.Operations
|
||||
{
|
||||
class OpRsh<T> : IOperation where T : unmanaged
|
||||
{
|
||||
IOperand _destination;
|
||||
IOperand _lhs;
|
||||
IOperand _rhs;
|
||||
|
||||
public OpRsh(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