1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-13 02:39:39 -05:00
ryujinx/src/ARMeilleure/Decoders/IOpCode32MemEx.cs
2023-04-27 23:51:14 +02:00

8 lines
118 B
C#

namespace ARMeilleure.Decoders
{
interface IOpCode32MemEx : IOpCode32Mem
{
int Rd { get; }
}
}