2025-04-14 22:08:50 +03:00
|
|
|
namespace X86Disassembler.X86;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Base class for all x86 instruction operands
|
|
|
|
/// </summary>
|
|
|
|
public abstract class Operand
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the type of this operand
|
|
|
|
/// </summary>
|
|
|
|
public OperandType Type { get; protected set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2025-04-16 19:07:32 +03:00
|
|
|
/// Gets or sets the size of the operand in bits (8, 16, 32)
|
2025-04-14 22:08:50 +03:00
|
|
|
/// </summary>
|
2025-04-16 18:30:17 +03:00
|
|
|
public int Size { get; protected set; }
|
|
|
|
|
2025-04-14 22:08:50 +03:00
|
|
|
/// <summary>
|
|
|
|
/// Returns a string representation of this operand
|
|
|
|
/// </summary>
|
|
|
|
public abstract override string ToString();
|
|
|
|
}
|