コード例 #1
0
ファイル: V850Disassembler.cs プロジェクト: nemerle/reko
 public V850Disassembler(V850Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
コード例 #2
0
 public V850Rewriter(V850Architecture 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 V850Disassembler(arch, rdr).GetEnumerator();
     this.instr  = null !;
     this.m      = null !;
 }
コード例 #3
0
ファイル: V850State.cs プロジェクト: fengjixuchui/reko
 public V850State(V850Architecture arch)
 {
     this.arch = arch;
 }