Cosmos/source2/Users/Gero Landmann/Cosmos.Assembler.X86.Gero/InstructionData.cs
2009-08-30 22:44:51 +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; }
}
}