Files
ryujinx-ryubing/Ryujinx/Cpu/Decoder/IAOpCode.cs
gdkchan b7e1d9930d aloha
2018-02-04 20:08:20 -03:00

13 lines
245 B
C#

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