Cosmos/source/Lost/Assembler/JIT/AMD64/JumpIfEqual.cs
LostTheBlack_cp 3060b02e0c AMD64 assembler:
[-] some unnecessary overloads
[+] overloaded operators in order to allow defining memory operands easily
[+] overloaded automatic conversions to allow operands
[+] Labels support
[+] code generator based on F# started
2008-05-09 11:29:38 +00:00

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"; }
}
}
}