mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-06 16:22:40 +00:00
16 lines
403 B
C#
16 lines
403 B
C#
using System;
|
|
namespace Cosmos.Assembler.X86
|
|
{
|
|
public interface IInstructionData
|
|
{
|
|
InstructionSet InstructionSet { get; set; }
|
|
BitSize Size { get; set; }
|
|
|
|
Operand Op1 { get; set; }
|
|
Operand Op2 { get; set; }
|
|
Operand Op3 { get; set; }
|
|
Operand Op4 { get; set; }
|
|
|
|
string ToString( InstructionOutputFormat aFormat );
|
|
}
|
|
}
|