示例#1
0
 public void Setup()
 {
     this.relocator = null;
     this.mem       = new ByteMemoryArea(Address.Ptr32(0x00100000), new byte[4096]);
     this.a5world   = new ImageSegment("A5World", mem, AccessMode.ReadWriteExecute);
 }
示例#2
0
 public BeImageReader(ByteMemoryArea image, Address addrBegin, Address addrEnd) : base(image, addrBegin, addrEnd)
 {
 }
示例#3
0
 public BeImageReader(ByteMemoryArea image, Address addr) : base(image, addr)
 {
 }
示例#4
0
 public BeImageReader(ByteMemoryArea image, long offsetBegin, long offsetEnd) : base(image, offsetBegin, offsetEnd)
 {
 }
示例#5
0
 public BeImageReader(ByteMemoryArea image, long offset) : base(image, offset)
 {
 }