상속: Reko.Core.ProcessorState
예제 #1
0
 public void Setup()
 {
     state = (RiscVState)arch.CreateProcessorState();
 }
예제 #2
0
 public RiscVState(RiscVState that) : base(that)
 {
     this.arch = that.arch;
     this.InstructionPointer = that.InstructionPointer;
 }
예제 #3
0
 public RiscVState(RiscVState that) : base(that)
 {
     this.arch = that.arch;
     this.pc   = that.pc;
 }