Cosmos/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionData.cs
kudzu_cp a58ad95c10
2014-07-14 15:56:02 +00:00

17 lines
379 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Assembler.X86
{
/// <summary>
/// This class is filled with data we get from the ILOps
/// </summary>
public class InstructionData : Cosmos.Assembler.X86.IInstructionData
{
public List<Operand> Operands { get; set; }
}
}