namespace X86Disassembler.X86.Handlers.Nop;
/// 
/// Handler for the 2-byte NOP instruction (0x66 0x90)
/// This is actually XCHG AX, AX with an operand size prefix
/// 
public class TwoByteNopHandler : InstructionHandler
{
    /// 
    /// Initializes a new instance of the TwoByteNopHandler class
    /// 
    /// The buffer containing the code to decode
    /// The instruction decoder that owns this handler
    /// The length of the buffer
    public TwoByteNopHandler(byte[] codeBuffer, InstructionDecoder decoder, int length)
        : base(codeBuffer, decoder, length)
    {
    }
    /// 
    /// Checks if this handler can decode the given opcode
    /// 
    /// The opcode to check
    /// True if this handler can decode the opcode
    public override bool CanHandle(byte opcode)
    {
        // Check if the opcode is 0x90 and we have a 0x66 prefix
        return opcode == 0x90 && Decoder.HasOperandSizeOverridePrefix();
    }
    /// 
    /// Decodes a 2-byte NOP instruction (XCHG AX, AX)
    /// 
    /// The opcode of the instruction
    /// The instruction object to populate
    /// True if the instruction was successfully decoded
    public override bool Decode(byte opcode, Instruction instruction)
    {
        // Although this is actually XCHG AX, AX, it's treated as NOP in the x86 architecture
        // and is commonly disassembled as such
        instruction.Mnemonic = "nop";
        
        // NOP has no operands, even with the operand size prefix
        instruction.Operands = "";
        
        return true;
    }
}