상속: Reko.Core.ProcessorState
예제 #1
0
 public VaxProcessorState(VaxProcessorState that)
     : base(that)
 {
     this.arch = that.arch;
     this.regs = (uint[])that.regs.Clone();
     this.isValid = (bool[])that.isValid.Clone();
 }
예제 #2
0
 public VaxProcessorState(VaxProcessorState that)
     : base(that)
 {
     this.arch    = that.arch;
     this.regs    = (uint[])that.regs.Clone();
     this.isValid = (bool[])that.isValid.Clone();
 }
예제 #3
0
 public void Setup()
 {
     state = (VaxProcessorState)arch.CreateProcessorState();
 }