mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 22:29:44 -06:00
30 lines
811 B
C#
30 lines
811 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCodeBfm : OpCodeAlu
|
|
{
|
|
public long WMask { get; }
|
|
public long TMask { get; }
|
|
public int Pos { get; }
|
|
public int Shift { get; }
|
|
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCodeBfm(inst, address, opCode);
|
|
|
|
public OpCodeBfm(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
{
|
|
DecoderHelper.BitMask bm = DecoderHelper.DecodeBitMask(opCode, false);
|
|
|
|
if (bm.IsUndefined)
|
|
{
|
|
Instruction = InstDescriptor.Undefined;
|
|
|
|
return;
|
|
}
|
|
|
|
WMask = bm.WMask;
|
|
TMask = bm.TMask;
|
|
Pos = bm.Pos;
|
|
Shift = bm.Shift;
|
|
}
|
|
}
|
|
}
|