Cosmos/source2/Compiler/Cosmos.Compiler.Assembler.X86/Sub.cs
2012-01-23 15:17:54 +00:00

12 lines
No EOL
369 B
C#

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