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

10 lines
186 B
C#

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