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

16 lines
350 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IL2CPU.PostAssembler
{
internal class BinaryLWInstruction :LWInstruction
{
public override LWInstructionType InstructionType
{
get { return LWInstructionType.BinaryInstruction; }
}
}
}