コード例 #1
0
 public SuperHRewriter(SuperHArchitecture arch, EndianImageReader rdr, SuperHState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.rdr    = rdr;
     this.state  = state;
     this.binder = binder;
     this.host   = host;
     this.dasm   = new SuperHDisassembler(rdr).GetEnumerator();
 }
コード例 #2
0
ファイル: SuperHState.cs プロジェクト: smx-smx/reko
 public SuperHState(SuperHState that) : base(that)
 {
     this.arch      = that.arch;
     this.regValues = new Dictionary <StorageDomain, Constant>(that.regValues);
 }
コード例 #3
0
 public SuperHState(SuperHState that) : base(that)
 {
     this.arch = that.arch;
 }