Esempio n. 1
0
 public Mos6502ProcessorState(Mos6502ProcessorState that) : base(that)
 {
     this.arch  = that.arch;
     regs       = (byte[])that.regs.Clone();
     this.valid = (bool[])that.valid.Clone();
     this.InstructionPointer = that.InstructionPointer;
 }
Esempio n. 2
0
 public Mos6502ProcessorState(Mos6502ProcessorState that) : base(that)
 {
     this.arch  = that.arch;
     regs       = (byte[])that.regs.Clone();
     this.valid = (bool[])that.valid.Clone();
     ip         = that.ip;
 }