Beispiel #1
0
 public Cray1Disassembler(Cray1Architecture arch, EndianImageReader rdr)
 {
     this.arch = arch;
     this.rdr  = rdr;
     this.ops  = new List <MachineOperand>();
     this.addr = null !;
 }
 public void Setup()
 {
     this.arch = new Cray1Architecture("cray1");
     this.addr = Address.Ptr32(0x00100000);
 }
Beispiel #3
0
 public void Setup()
 {
     this.arch = new Cray1Architecture(new ServiceContainer(), "cray1", new Dictionary <string, object>());
     this.addr = Address.Ptr32(0x00100000);
 }
Beispiel #4
0
 public void Setup()
 {
     this.arch = new Cray1Architecture(new ServiceContainer(), "cray1");
     this.addr = Address.Ptr32(0x00100000);
 }