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

25 lines
566 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IL2CPU.PostAssembler
{
internal class BinaryWithLabelLWInstruction : LWInstruction, ILabelInstruction
{
public override LWInstructionType InstructionType
{
get { return LWInstructionType.BinaryInstructionWithLabel; }
}
#region ILabelInstruction Members
public string Label
{
get { throw new NotImplementedException(); }
}
#endregion
}
}