mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 16:46:39 +00:00
14 lines
334 B
C#
14 lines
334 B
C#
|
using ChocolArm64.Instructions;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
class OpCodeSimdMemReg64 : OpCodeMemReg64, IOpCodeSimd64
|
||
|
{
|
||
|
public OpCodeSimdMemReg64(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
||
|
{
|
||
|
Size |= (opCode >> 21) & 4;
|
||
|
|
||
|
Extend64 = false;
|
||
|
}
|
||
|
}
|
||
|
}
|