Cosmos/source2/IL2PCU/Cosmos.IL2CPU.X86/X86/_Infra/IInstructionWithPrefix.cs
mterwoord_cp 9d3e3e1977
2010-08-01 14:54:27 +00:00

21 lines
402 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,
RepeatNotEqual
}
public interface IInstructionWithPrefix {
InstructionPrefixes Prefixes {
get;
set;
}
}
}