Inheritance: Reko.Core.ProcessorState
Example #1
0
 public M68kState(M68kState orig)
     : base(orig)
 {
     this.arch = orig.arch;
     this.values = (uint[]) orig.values.Clone();
     this.isValid = (bool[]) orig.isValid.Clone();
 }
Example #2
0
 public Rewriter(M68kArchitecture m68kArchitecture, EndianImageReader rdr, M68kState m68kState, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = m68kArchitecture;
     this.state  = m68kState;
     this.binder = binder;
     this.host   = host;
     this.dasm   = arch.CreateDisassemblerImpl(rdr).GetEnumerator();
 }
Example #3
0
 public Rewriter(M68kArchitecture m68kArchitecture, ImageReader rdr, M68kState m68kState, Frame frame, IRewriterHost host)
 {
     this.arch  = m68kArchitecture;
     this.state = m68kState;
     this.frame = frame;
     this.host  = host;
     this.dasm  = arch.CreateDisassemblerImpl(rdr).GetEnumerator();
 }
Example #4
0
 public M68kState(M68kState orig) : base(orig)
 {
     this.arch    = orig.arch;
     this.values  = (Constant[])orig.values.Clone();
     this.isValid = (bool[])orig.isValid.Clone();
 }
Example #5
0
 public void Setup()
 {
     arch = new M68kArchitecture();
     state = new M68kState(arch);
 }