Exemplo n.º 1
0
 public ConditionalJump(LabelInstruction target, IReadableValue condition, bool inverted)
 {
     Target    = target;
     Condition = condition;
     Inverted  = inverted;
 }
Exemplo n.º 2
0
 public UnconditionalJump(LabelInstruction target)
 {
     Target = target;
 }
Exemplo n.º 3
0
 public ConditionalJump(LabelInstruction target, IReadableValue condition)
 {
     Target    = target;
     Condition = condition;
     Inverted  = false;
 }