Inheritance: Reko.Core.ProcessorState
コード例 #1
0
ファイル: RiscVRewriterTests.cs プロジェクト: uxmal/reko
 public void Setup()
 {
     state = (RiscVState)arch.CreateProcessorState();
 }
コード例 #2
0
ファイル: RiscVState.cs プロジェクト: xxtxiaofeng/reko
 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;
 }