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

11 lines
194 B
C#

using System;
using System.Collections.Generic;
namespace Cosmos.Assembler.X86
{
public interface IInstructionData
{
List<Operand> Operands { get; set; }
}
}