mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-08-28 20:56:27 -05:00
Move solution and projects to src
This commit is contained in:
16
src/ARMeilleure/Decoders/IOpCode32Mem.cs
Normal file
16
src/ARMeilleure/Decoders/IOpCode32Mem.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace ARMeilleure.Decoders
|
||||
{
|
||||
interface IOpCode32Mem : IOpCode32
|
||||
{
|
||||
int Rt { get; }
|
||||
int Rt2 => Rt | 1;
|
||||
int Rn { get; }
|
||||
|
||||
bool WBack { get; }
|
||||
bool IsLoad { get; }
|
||||
bool Index { get; }
|
||||
bool Add { get; }
|
||||
|
||||
int Immediate { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user