Cosmos/source2/Cosmos.Assembler.x86/SubWithCarry.cs
kudzu_cp b0cb66f739
2012-01-23 22:17:21 +00:00

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