コード例 #1
0
ファイル: ByteImageReader.cs プロジェクト: ghmole/reko
 public ushort PeekBeUInt16(int offset)
 {
     return(ByteMemoryArea.ReadBeUInt16(bytes, offset + (uint)off));
 }
コード例 #2
0
ファイル: EndianImageReader.cs プロジェクト: ghmole/reko
 protected EndianByteImageReader(ByteMemoryArea img, Address addrBegin, Address addrEnd) : base(img, addrBegin, addrEnd)
 {
 }
コード例 #3
0
ファイル: EndianImageReader.cs プロジェクト: ghmole/reko
 protected EndianByteImageReader(ByteMemoryArea img, long off) : base(img, off)
 {
 }
コード例 #4
0
ファイル: EndianImageReader.cs プロジェクト: ghmole/reko
 protected EndianByteImageReader(ByteMemoryArea img, long offsetBegin, long offsetEnd) : base(img, offsetBegin, offsetEnd)
 {
 }