Exemplo n.º 1
0
 public i8051Disassembler(i8051Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
Exemplo n.º 2
0
 public i8051Rewriter(i8051Architecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.rdr    = rdr;
     this.state  = state;
     this.binder = binder;
     this.host   = host;
     this.dasm   = new i8051Disassembler(arch, rdr).GetEnumerator();
 }
Exemplo n.º 3
0
 public i8051State(i8051Architecture arch)
 {
     this.arch      = arch;
     this.regValues = new Dictionary <RegisterStorage, Constant>();
 }
Exemplo n.º 4
0
 public i8051State(i8051State that) : base(that)
 {
     this.arch      = that.arch;
     this.regValues = new Dictionary <RegisterStorage, Constant>(that.regValues);
 }
Exemplo n.º 5
0
 public i8051Disassembler(i8051Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
 }