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