Ejemplo n.º 1
0
 public Jl(short a, short b, ZBranchLabel branchLabel)
     : this(branchLabel, new ZOperand(a), new ZOperand(b))
 {
 }
Ejemplo n.º 2
0
 public Jl(ZVariable a, ZVariable b, ZBranchLabel branchLabel)
     : this(branchLabel, new ZOperand(a), new ZOperand(b))
 {
 }
Ejemplo n.º 3
0
 public Jz(ZVariable a, ZBranchLabel branchLabel)
     : this(branchLabel, new ZOperand(a))
 {
 }
Ejemplo n.º 4
0
 private Jl(ZBranchLabel branchLabel, params ZOperand[] operands)
     : base("jl", 0x02, OpcodeTypeKind.TwoOP, branchLabel, operands)
 {
 }
Ejemplo n.º 5
0
 public Jz(short a, ZBranchLabel branchLabel)
     : this(branchLabel, new ZOperand(a))
 {
 }
Ejemplo n.º 6
0
 public Jz(byte a, ZBranchLabel branchLabel)
     : this(branchLabel, new ZOperand(a))
 {
 }
Ejemplo n.º 7
0
 private Jz(ZBranchLabel branchLabel, params ZOperand[] operands)
     : base("jz", 0x00, OpcodeTypeKind.OneOP, branchLabel, operands)
 {
 }
Ejemplo n.º 8
0
 public Je(ZVariable a, short b, ZBranchLabel branchLabel)
     : this(branchLabel, new ZOperand(a), new ZOperand(b))
 {
 }
Ejemplo n.º 9
0
 public Je(short a, byte b, ZBranchLabel branchLabel)
     : this(branchLabel, new ZOperand(a), new ZOperand(b))
 {
 }