Ejemplo n.º 1
0
Archivo: Sub.cs Proyecto: embix/TIS100
 public Sub(RWRef source)
 {
     this.Source = source;
 }
Ejemplo n.º 2
0
Archivo: Add.cs Proyecto: embix/TIS100
 public Add(RWRef source)
 {
     this.Source = source;
 }
Ejemplo n.º 3
0
Archivo: Jro.cs Proyecto: embix/TIS100
 public Jro(RWRef source)
 {
     this.Source = source;
 }
Ejemplo n.º 4
0
Archivo: Mov.cs Proyecto: embix/TIS100
 public Mov(RWRef source, RWRef destination)
 {
     this.Source = source;
     this.Destination = destination;
     this.state = MovState.Reading;
 }