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(); }
public SuperHState(SuperHState that) : base(that) { this.arch = that.arch; this.regValues = new Dictionary <StorageDomain, Constant>(that.regValues); }
public SuperHState(SuperHState that) : base(that) { this.arch = that.arch; }