Cosmos/source/Tests/MathTest/Lost/JIT/AMD64/JumpIfEqual.cs

23 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Lost.JIT.AMD64
{
[Serializable]
public sealed class JumpIfEqual: ConditionalJumpInstruction
{
public JumpIfEqual(int targetOffset) : base(targetOffset) { }
protected override int OpcodeBase
{
get { return 0x74; }
}
public override string OpCodeFASM
{
get { return "je"; }
}
}
}