Cosmos/source/Indy.IL2CPU/Assembler/x86/_Infra/IInstructionWithPrefix.cs
mterwoord_cp 8fc935c949
2008-12-05 16:52:04 +00:00

20 lines
385 B
C#

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