Пример #1
0
 public C166Disassembler(C166Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
Пример #2
0
 public C166Rewriter(C166Architecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.state  = state;
     this.binder = binder;
     this.host   = host;
     this.rdr    = rdr;
     this.dasm   = new C166Disassembler(arch, rdr).GetEnumerator();
     this.instrs = new List <RtlInstruction>();
     this.m      = new RtlEmitter(instrs);
     this.instr  = null !;
 }
Пример #3
0
 public C166ProcessorState(C166ProcessorState that)
 {
     this.arch = that.arch;
 }
Пример #4
0
 public C166ProcessorState(C166Architecture arch)
 {
     this.arch = arch;
 }