Cosmos/source/IL2CPU.PostAssembler/Instructions/IOpCodeInstruction.cs
2009-05-26 11:33:48 +00:00

10 lines
186 B
C#

using System;
namespace IL2CPU.PostAssembler
{
interface IOpCodeInstruction
{
string OpCode{ get; }
// bool ContainsLabel(out string label);
}
}