mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 01:28:34 +00:00
18 lines
499 B
C#
18 lines
499 B
C#
|
namespace ARMeilleure.Decoders
|
||
|
{
|
||
|
class OpCodeBImmTest : OpCodeBImm
|
||
|
{
|
||
|
public int Rt { get; private set; }
|
||
|
public int Bit { get; private set; }
|
||
|
|
||
|
public OpCodeBImmTest(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
||
|
{
|
||
|
Rt = opCode & 0x1f;
|
||
|
|
||
|
Immediate = (long)address + DecoderHelper.DecodeImmS14_2(opCode);
|
||
|
|
||
|
Bit = (opCode >> 19) & 0x1f;
|
||
|
Bit |= (opCode >> 26) & 0x20;
|
||
|
}
|
||
|
}
|
||
|
}
|