mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-03 14:50:42 +00:00
18 lines
353 B
C#
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; }
|
|
}
|
|
}
|
|
}
|