Cosmos/source/Indy.IL2CPU/Assembler/x86/Sub.cs
mterwoord_cp 0d27abe2e7
2008-11-08 10:52:35 +00:00

12 lines
No EOL
338 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, "sub")]
public class Sub: InstructionWithDestinationAndSourceAndSize {
}
}