Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/X86/_Infra/IInstructionWithPrefix.cs
mterwoord_cp adfd13074f
2010-08-01 15:25:20 +00:00

21 lines
403 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.IL2CPU.X86 {
[Flags]
public enum InstructionPrefixes {
None,
Lock,
Repeat,
RepeatTillEqual
}
public interface IInstructionWithPrefix {
InstructionPrefixes Prefixes {
get;
set;
}
}
}