Ejemplo n.º 1
0
 public Jump(ECondition conditions, EJump jump, int offset)
 {
     Condition = conditions;
     JumpType  = jump;
     Offset    = offset;
     Linked    = true;
 }
Ejemplo n.º 2
0
 public Jump(ECondition conditions, EJump jump, ERegister rm)
 {
     Condition = conditions;
     JumpType  = jump;
     Rm        = rm;
     Linked    = true;
 }
Ejemplo n.º 3
0
 public Jump(ECondition conditions, EJump jump, string label)
 {
     Condition = conditions;
     JumpType  = jump;
     Label     = label;
     Linked    = false;
 }