Inheritance: Reko.Core.ProcessorState
Exemplo n.º 1
0
 public void Setup()
 {
     state = (RiscVState)arch.CreateProcessorState();
 }
Exemplo n.º 2
0
 public RiscVState(RiscVState that) : base(that)
 {
     this.arch = that.arch;
     this.InstructionPointer = that.InstructionPointer;
 }
Exemplo n.º 3
0
 public RiscVState(RiscVState that) : base(that)
 {
     this.arch = that.arch;
     this.pc   = that.pc;
 }