상속: Reko.Core.ProcessorArchitecture
예제 #1
0
 public Avr8Disassembler(Avr8Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
예제 #2
0
 public Avr8Rewriter(Avr8Architecture arch, EndianImageReader rdr, ProcessorState state, Frame frame, IRewriterHost host)
 {
     this.arch  = arch;
     this.dasm  = new Avr8Disassembler(arch, rdr).GetEnumerator();
     this.state = state;
     this.frame = frame;
     this.host  = host;
 }
예제 #3
0
 public Avr8Rewriter(Avr8Architecture arch, EndianImageReader rdr, ProcessorState state, IStorageBinder binder, IRewriterHost host)
 {
     this.arch   = arch;
     this.rdr    = rdr;
     this.dasm   = new LookaheadEnumerator <AvrInstruction>(new Avr8Disassembler(arch, rdr).GetEnumerator());
     this.state  = state;
     this.binder = binder;
     this.host   = host;
 }
예제 #4
0
 public Avr8Disassembler(Avr8Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
 }
예제 #5
0
파일: Avr8State.cs 프로젝트: ghmole/reko
 public Avr8State(Avr8State that) : base(that)
 {
     this.arch = that.arch;
 }
예제 #6
0
파일: Avr8State.cs 프로젝트: ghmole/reko
 public Avr8State(Avr8Architecture arch)
 {
     this.arch = arch;
 }
예제 #7
0
파일: Avr8State.cs 프로젝트: uxmal/reko
 public Avr8State(Avr8Architecture arch)
 {
     this.arch = arch;
 }