mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-12-24 09:02:31 +01:00
10 lines
177 B
C#
10 lines
177 B
C#
namespace ARMeilleure.Decoders
|
|
{
|
|
interface IOpCode32SimdImm : IOpCode32Simd
|
|
{
|
|
int Vd { get; }
|
|
long Immediate { get; }
|
|
int Elems { get; }
|
|
}
|
|
}
|