using System; using System.Linq; namespace Cosmos.Compiler.Assembler.X86 { /// /// Subtracts the source operand from the destination operand and /// replaces the destination operand with the result. /// [OpCode("sub")] public class Sub : InstructionWithDestinationAndSourceAndSize { } }