Ejemplo n.º 1
0
 public Rewriter(Mos6502ProcessorArchitecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.state  = state;
     this.binder = binder;
     this.host   = host;
     this.instrs = new Disassembler(rdr.CreateLeReader());
 }
Ejemplo n.º 2
0
 public Rewriter(Mos6502ProcessorArchitecture arch, EndianImageReader rdr, ProcessorState state, Frame frame, IRewriterHost host)
 {
     this.arch   = arch;
     this.state  = state;
     this.frame  = frame;
     this.host   = host;
     this.instrs = new Disassembler(rdr.CreateLeReader());
 }