Cosmos/source2/Compiler/Cosmos.Compiler.Assembler.X86/SubWithCarry.cs
2010-08-05 17:11:04 +00:00

14 lines
347 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>
[OpCode("sbb")]
public class SubWithCarry : InstructionWithDestinationAndSourceAndSize
{
}
}