mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 08:46:40 +00:00
14 lines
293 B
C#
14 lines
293 B
C#
|
using ChocolArm64.Instructions;
|
||
|
|
||
|
namespace ChocolArm64.Decoders
|
||
|
{
|
||
|
class OpCodeT16 : OpCode32
|
||
|
{
|
||
|
public OpCodeT16(Inst inst, long position, int opCode) : base(inst, position, opCode)
|
||
|
{
|
||
|
Cond = Condition.Al;
|
||
|
|
||
|
OpCodeSizeInBytes = 2;
|
||
|
}
|
||
|
}
|
||
|
}
|