Ejemplo n.º 1
0
 public Tlcs900ProcessorState(Tlcs900ProcessorState that) : base(that)
 {
     this.arch  = that.arch;
     this.regs  = (uint[])that.regs.Clone();
     this.valid = (bool[])that.valid.Clone();
 }
Ejemplo n.º 2
0
 public Tlcs900ProcessorState(Tlcs900Architecture arch)
 {
     this.arch  = arch;
     this.regs  = new uint[32];
     this.valid = new bool[32];
 }