Beispiel #1
0
 public Sub(Operand a, Operand b)
     : base("SUB", a, b)
 {
 }
Beispiel #2
0
 public Xor(Operand a, Operand b)
     : base("XOR", a, b)
 {
 }
Beispiel #3
0
 public Shl(Operand a, Operand b)
     : base("SHL", a, b)
 {
 }
Beispiel #4
0
 public Shr(Operand a, Operand b)
     : base("SHR", a, b)
 {
 }
Beispiel #5
0
 public Div(Operand a, Operand b)
     : base("DIV", a, b)
 {
 }
Beispiel #6
0
 public And(Operand a, Operand b)
     : base("AND", a, b)
 {
 }
Beispiel #7
0
 public Mod(Operand a, Operand b)
     : base("MOD", a, b)
 {
 }
Beispiel #8
0
 protected NonBasicOp(string name, Operand a)
 {
     _name = name;
     A = a;
 }
Beispiel #9
0
 public Ifg(Operand a, Operand b)
     : base("IFG", a, b)
 {
 }
Beispiel #10
0
 public Ifn(Operand a, Operand b)
     : base("IFN", a, b)
 {
 }
Beispiel #11
0
 public Ife(Operand a, Operand b)
     : base("IFE", a, b)
 {
 }
Beispiel #12
0
 public Ifb(Operand a, Operand b)
     : base("IFB", a, b)
 {
 }
Beispiel #13
0
 public If(string name, Operand a, Operand b)
     : base(name, a, b)
 {
 }
Beispiel #14
0
 protected BasicOp(string name, Operand a, Operand b)
 {
     _name = name;
     A = a;
     B = b;
 }
Beispiel #15
0
 public Mul(Operand a, Operand b)
     : base("MUL", a, b)
 {
 }
Beispiel #16
0
 public Add(Operand a, Operand b)
     : base("ADD", a, b)
 {
 }
Beispiel #17
0
 public Set(Operand a, Operand b)
     : base("SET", a, b)
 {
 }
Beispiel #18
0
 public Jsr(Operand a)
     : base("JSR", a)
 {
 }
Beispiel #19
0
 public Bor(Operand a, Operand b)
     : base("BOR", a, b)
 {
 }