0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-07-03 13:20:26 +03:00

Updated instruction handlers to use Type and StructuredOperands instead of Mnemonic and Operands

This commit is contained in:
bird_egop
2025-04-14 22:08:50 +03:00
parent c516e063e7
commit 685eeda03d
136 changed files with 3694 additions and 2584 deletions

View File

@ -0,0 +1,37 @@
namespace X86Disassembler.X86;
/// <summary>
/// Represents the index values for x87 floating-point unit registers.
/// These values correspond to the encoding used in x87 FPU instructions
/// for identifying the specific ST(i) register operands.
/// </summary>
public enum FpuRegisterIndex
{
// FPU register aliases
/// <summary>FPU register ST(0)</summary>
ST0 = 0,
/// <summary>FPU register ST(1)</summary>
ST1 = 2,
/// <summary>FPU register ST(2)</summary>
ST2 = 3,
/// <summary>FPU register ST(3)</summary>
ST3 = 1,
/// <summary>FPU register ST(4)</summary>
ST4 = 6,
/// <summary>FPU register ST(5)</summary>
ST5 = 7,
/// <summary>FPU register ST(6)</summary>
ST6 = 4,
/// <summary>FPU register ST(7)</summary>
ST7 = 5,
}