Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/IInstructionData.cs

11 lines
183 B
C#

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