mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 23:16:40 +00:00
db45688aa8
* Implement VRSRA, VRSHRN, VQSHRUN, VQMOVN, VQMOVUN, VQADD, VQSUB, VRHADD, VPADDL, VSUBL, VQDMULH and VMLAL Arm32 NEON instructions * PPTC version * Fix VQADD/VQSUB * Improve MRC/MCR handling and exception messages In case data is being recompiled as code, we don't want to throw at emit stage, instead we should only throw if it actually tries to execute
12 lines
397 B
C#
12 lines
397 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
class OpCode32SimdMovn : OpCode32Simd
|
|
{
|
|
public new static OpCode Create(InstDescriptor inst, ulong address, int opCode) => new OpCode32SimdMovn(inst, address, opCode);
|
|
|
|
public OpCode32SimdMovn(InstDescriptor inst, ulong address, int opCode) : base(inst, address, opCode)
|
|
{
|
|
Size = (opCode >> 18) & 0x3;
|
|
}
|
|
}
|
|
}
|