mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
12 lines
No EOL
329 B
C#
12 lines
No EOL
329 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("sub")]
|
|
public class Sub: InstructionWithDestinationAndSourceAndSize {
|
|
}
|
|
} |