Cosmos/source/Tests/MathTest/Lost/JIT/AMD64/Compare.cs
2008-04-11 11:47:47 +00:00

58 lines
1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace Lost.JIT.AMD64
{
[Serializable]
public sealed class Compare : AluInstruction
{
public Compare(InstructionOperand dest, InstructionOperand source)
: base(dest, source)
{
}
public Compare(InstructionOperand dest, byte source)
: base(dest, source)
{
}
public Compare(InstructionOperand dest, short source)
: base(dest, source)
{
}
public Compare(InstructionOperand dest, int source)
: base(dest, source)
{
}
public Compare(InstructionOperand dest, long source)
: base(dest, source)
{
}
public override byte AccumulatorOpCode
{
get
{
return 0x3C;
}
}
public override byte ImmediateExt
{
get { return 0x07; }
}
public override byte ImmediateOpCode
{
get { return 0x80; }
}
public override byte RegisterOpCode
{
get { return 0x38; }
}
public override string OpCodeFASM
{
get { return "cmp"; }
}
}
}