Exemplo n.º 1
0
 public LatticeMico32Disassembler(LatticeMico32Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
Exemplo n.º 2
0
 public LatticeMico32Rewriter(LatticeMico32Architecture 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 LatticeMico32Disassembler(arch, rdr).GetEnumerator();
 }
Exemplo n.º 3
0
 public LatticeMico32State(LatticeMico32Architecture arch)
 {
     this.arch = arch;
 }