mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
14 lines
321 B
C#
14 lines
321 B
C#
|
using ChocolArm64.Instructions;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
class OpCodeBReg32 : OpCode32, IOpCodeBReg32
|
||
|
{
|
||
|
public int Rm { get; private set; }
|
||
|
|
||
|
public OpCodeBReg32(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
||
|
{
|
||
|
Rm = opCode & 0xf;
|
||
|
}
|
||
|
}
|
||
|
}
|