mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-07-09 07:10:27 +03:00
Improve FCLEX/FNCLEX handler documentation with accurate behavior descriptions
This commit is contained in:
@ -3,7 +3,7 @@ namespace X86Disassembler.X86.Handlers.FloatingPoint.Control;
|
|||||||
using X86Disassembler.X86.Operands;
|
using X86Disassembler.X86.Operands;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Handler for FCLEX instruction (DB E2)
|
/// Handler for FNCLEX instruction (0xDB 0xE2) - Clears floating-point exception flags without checking for pending unmasked exceptions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class FclexHandler : InstructionHandler
|
public class FclexHandler : InstructionHandler
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
namespace X86Disassembler.X86.Handlers.FloatingPoint.Control;
|
namespace X86Disassembler.X86.Handlers.FloatingPoint.Control;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Handler for FCLEX instruction with WAIT prefix (0x9B 0xDB 0xE2)
|
/// Handler for FCLEX instruction with WAIT prefix (0x9B 0xDB 0xE2) - Clears floating-point exception flags after checking for pending unmasked floating-point exceptions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class FclexWaitHandler : InstructionHandler
|
public class FclexWaitHandler : InstructionHandler
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user