Ejemplo n.º 1
0
 public Instruction(OpProperties Property, byte A, byte B, byte C)
 {
     this.Property = Property;
     this.A        = A;
     this.B        = B;
     this.C        = C;
 }
Ejemplo n.º 2
0
 public Instruction(OpProperties Property, byte A, short sBx)
 {
     this.Property = Property;
     this.A        = A;
     this.sBx      = sBx;
 }
Ejemplo n.º 3
0
 public Instruction(OpProperties Property, byte A, ushort Bx)
 {
     this.Property = Property;
     this.A        = A;
     this.Bx       = Bx;
 }