Ejemplo n.º 1
0
 public M6809Disassembler(M6809Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
Ejemplo n.º 2
0
 public M6809Rewriter(M6809Architecture 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 M6809Disassembler(arch, rdr).GetEnumerator();
 }
Ejemplo n.º 3
0
 public M6809State(M6809Architecture arch)
 {
     this.arch = arch;
 }
Ejemplo n.º 4
0
 public void Setup()
 {
     this.arch = new M6809Architecture(CreateServiceContainer(), "m6809", new Dictionary <string, object>());
     this.addr = Address.Ptr16(0x0100);
 }
Ejemplo n.º 5
0
 public void Setup()
 {
     this.arch = new Reko.Arch.M6800.M6809Architecture("m6809");
     this.addr = Address.Ptr16(0x0100);
 }
Ejemplo n.º 6
0
 public void Setup()
 {
     this.arch = new M6809Architecture(CreateServiceContainer(), "m6809");
     this.addr = Address.Ptr16(0x0100);
 }