mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-01 13:51:02 +00:00
17 lines
379 B
C#
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; }
|
|
|
|
}
|
|
}
|