示例#1
0
 public SuperHDisassembler(SuperHArchitecture arch, EndianImageReader rdr)
 {
     this.arch  = arch;
     this.rdr   = rdr;
     this.state = new DasmState();
     this.addr  = null !;
 }
示例#2
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();
 }
示例#3
0
 public SuperHState(SuperHState that) : base(that)
 {
     this.arch      = that.arch;
     this.regValues = new Dictionary <StorageDomain, Constant>(that.regValues);
 }
示例#4
0
 public SuperHState(SuperHArchitecture arch)
 {
     this.arch      = arch;
     this.regValues = new Dictionary <StorageDomain, Constant>();
 }
示例#5
0
 public SuperHState(SuperHArchitecture arch)
 {
     this.arch = arch;
 }
示例#6
0
 public SuperHState(SuperHState that) : base(that)
 {
     this.arch = that.arch;
 }