using System; using System.Linq; namespace Indy.IL2CPU.Assembler.X86 { /// /// Subtracts the source operand from the destination operand and /// replaces the destination operand with the result. /// [OpCode("sbb")] public class SubWithCarry : InstructionWithDestinationAndSourceAndSize { } }