RyuKen/Ryujinx/Cpu/Decoder/IAOpCode.cs
2018-02-04 20:08:20 -03:00

13 lines
No EOL
245 B
C#

using ChocolArm64.Instruction;
using ChocolArm64.State;
namespace ChocolArm64.Decoder
{
interface IAOpCode
{
long Position { get; }
AInstEmitter Emitter { get; }
ARegisterSize RegisterSize { get; }
}
}