Example #1
0
 public XCore200Disassembler(XCore200Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
Example #2
0
 public XCore200Rewriter(XCore200Architecture 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 XCore200Disassembler(arch, rdr).GetEnumerator();
 }
Example #3
0
 public XCore200State(XCore200Architecture arch)
 {
     this.arch = arch;
 }