mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 15:06:39 +00:00
16 lines
374 B
C#
16 lines
374 B
C#
|
using ChocolArm64.Instructions;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
class OpCodeSimdMemPair64 : OpCodeMemPair64, IOpCodeSimd64
|
||
|
{
|
||
|
public OpCodeSimdMemPair64(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
||
|
{
|
||
|
Size = ((opCode >> 30) & 3) + 2;
|
||
|
|
||
|
Extend64 = false;
|
||
|
|
||
|
DecodeImm(opCode);
|
||
|
}
|
||
|
}
|
||
|
}
|