Cosmos/source/Indy.IL2CPU/Assembler/x86/SubWithCarry.cs
mterwoord_cp 967ef9c876
2008-11-08 10:24:48 +00:00

14 lines
353 B
C#

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