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