mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 03:58:34 +00:00
12 lines
301 B
C#
12 lines
301 B
C#
|
namespace ARMeilleure.Decoders
|
||
|
{
|
||
|
class OpCodeSimdExt : OpCodeSimdReg
|
||
|
{
|
||
|
public int Imm4 { get; private set; }
|
||
|
|
||
|
public OpCodeSimdExt(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||
|
{
|
||
|
Imm4 = (opCode >> 11) & 0xf;
|
||
|
}
|
||
|
}
|
||
|
}
|