mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 15:19:50 -06:00
aloha
This commit is contained in:
16
Ryujinx/Cpu/Decoder/AOpCodeSimdReg.cs
Normal file
16
Ryujinx/Cpu/Decoder/AOpCodeSimdReg.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using ChocolArm64.Instruction;
|
||||
|
||||
namespace ChocolArm64.Decoder
|
||||
{
|
||||
class AOpCodeSimdReg : AOpCodeSimd
|
||||
{
|
||||
public int Rm { get; private set; }
|
||||
public bool Bit3 { get; private set; }
|
||||
|
||||
public AOpCodeSimdReg(AInst Inst, long Position, int OpCode) : base(Inst, Position, OpCode)
|
||||
{
|
||||
Rm = (OpCode >> 16) & 0x1f;
|
||||
Bit3 = ((OpCode >> 3) & 0x1) != 0;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user