using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Indy.IL2CPU.Assembler { /// /// Represents the JE opcode /// public class JumpIfEquals: Instruction { public readonly string Address; public JumpIfEquals(string aAddress) { Address = aAddress; } public override string ToString() { return "je " + Address; } } }