Cosmos/source/Tests/MathTest/Lost/JIT/AMD64/JumpIfEqual.cs
2008-04-09 11:15:41 +00:00

18 lines
353 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; }
}
}
}