Cosmos/source2/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/IInstructionData.cs
2009-08-30 22:24:50 +00:00

16 lines
403 B
C#

using System;
namespace Cosmos.Assembler.X86
{
public interface IInstructionData
{
InstructionSet InstructionSet { get; set; }
BitSize Size { get; set; }
Operand Op1 { get; set; }
Operand Op2 { get; set; }
Operand Op3 { get; set; }
Operand Op4 { get; set; }
string ToString( InstructionOutputFormat aFormat );
}
}