1 2 3 4 5 6 7 8 9 10
namespace ARMeilleure.Decoders { interface IOpCode32Alu : IOpCode32 { int Rd { get; } int Rn { get; } bool SetFlags { get; } } }