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

17 lines
277 B
C#

using System;
namespace IL2CPU.PostAssembler
{
interface ILWInstruction
{
byte[] ToBinary();
string ToString();
LWInstructionType InstructionType { get; }
// bool ContainsLabel(out string label);
}
}