mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:48:42 +00:00
14 lines
327 B
C#
14 lines
327 B
C#
using ChocolArm64.Instruction;
|
|
|
|
namespace ChocolArm64.Decoder
|
|
{
|
|
class AOpCodeSimdExt : AOpCodeSimdReg
|
|
{
|
|
public int Imm4 { get; private set; }
|
|
|
|
public AOpCodeSimdExt(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
|
|
{
|
|
Imm4 = (OpCode >> 11) & 0xf;
|
|
}
|
|
}
|
|
} |