1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-11 09:59:33 -06:00
ryujinx/src/ARMeilleure/Decoders/IOpCode32SimdImm.cs
2023-04-27 23:51:14 +02:00

10 lines
180 B
C#

namespace ARMeilleure.Decoders
{
interface IOpCode32SimdImm : IOpCode32Simd
{
int Vd { get; }
long Immediate { get; }
int Elems { get; }
}
}