Exemplo n.º 1
0
 public WE32100DisassemblerTests()
 {
     this.arch = new WE32100Architecture("we32100");
     this.addr = Address.Ptr32(0x00100000);
 }
Exemplo n.º 2
0
 public WE32100DisassemblerTests()
 {
     this.arch = new WE32100Architecture(new ServiceContainer(), "we32100");
     this.addr = Address.Ptr32(0x00100000);
 }
Exemplo n.º 3
0
 public WE32100DisassemblerTests()
 {
     this.arch = new WE32100Architecture(new ServiceContainer(), "we32100", new Dictionary <string, object>());
     this.addr = Address.Ptr32(0x00100000);
 }
Exemplo n.º 4
0
 public WE32100RewriterTests()
 {
     this.arch = new WE32100Architecture(CreateServiceContainer(), "we32100", new Dictionary <string, object>());
     this.addr = Address.Create(arch.PointerType, 0x0010_0000);
 }